taxtank-core 2.0.37 → 2.0.39

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.
@@ -100,10 +100,10 @@ class AddressService {
100
100
  }
101
101
  return this.countriesSubject.asObservable();
102
102
  }
103
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AddressService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
104
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AddressService, providedIn: 'root' }); }
103
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AddressService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
104
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AddressService, providedIn: 'root' }); }
105
105
  }
106
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AddressService, decorators: [{
106
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AddressService, decorators: [{
107
107
  type: Injectable,
108
108
  args: [{
109
109
  providedIn: 'root'
@@ -127,10 +127,10 @@ class PdfService {
127
127
  formData.append('landscape', landscape ? '1' : '0');
128
128
  return this.http.post(`${this.environment.apiV2}/pdf/html`, formData, { responseType: 'blob' });
129
129
  }
130
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
131
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfService, providedIn: 'root' }); }
130
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
131
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfService, providedIn: 'root' }); }
132
132
  }
133
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfService, decorators: [{
133
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfService, decorators: [{
134
134
  type: Injectable,
135
135
  args: [{
136
136
  providedIn: 'root'
@@ -973,6 +973,13 @@ var AnnualFrequencyEnum;
973
973
  AnnualFrequencyEnum[AnnualFrequencyEnum["WEEKLY"] = 52] = "WEEKLY";
974
974
  })(AnnualFrequencyEnum || (AnnualFrequencyEnum = {}));
975
975
 
976
+ var DailyFrequencyEnum;
977
+ (function (DailyFrequencyEnum) {
978
+ DailyFrequencyEnum[DailyFrequencyEnum["MONTHLY"] = 30] = "MONTHLY";
979
+ DailyFrequencyEnum[DailyFrequencyEnum["FORTNIGHTLY"] = 14] = "FORTNIGHTLY";
980
+ DailyFrequencyEnum[DailyFrequencyEnum["WEEKLY"] = 7] = "WEEKLY";
981
+ })(DailyFrequencyEnum || (DailyFrequencyEnum = {}));
982
+
976
983
  var ChartAccountsCategoryEnum;
977
984
  (function (ChartAccountsCategoryEnum) {
978
985
  ChartAccountsCategoryEnum[ChartAccountsCategoryEnum["PROPERTY_INCOME"] = 1] = "PROPERTY_INCOME";
@@ -1325,6 +1332,24 @@ var ChartAccountsPropertyAdjustmentsListEnum;
1325
1332
  ChartAccountsPropertyAdjustmentsListEnum[ChartAccountsPropertyAdjustmentsListEnum["LANDLORD_REIMBURSEMENT"] = 908] = "LANDLORD_REIMBURSEMENT";
1326
1333
  })(ChartAccountsPropertyAdjustmentsListEnum || (ChartAccountsPropertyAdjustmentsListEnum = {}));
1327
1334
 
1335
+ const EXPENSE_CATEGORY_BY_TYPE = {
1336
+ [TankTypeEnum.PROPERTY]: ChartAccountsCategoryEnum.PROPERTY_EXPENSE,
1337
+ [TankTypeEnum.WORK]: ChartAccountsCategoryEnum.WORK_EXPENSE,
1338
+ [TankTypeEnum.OTHER]: ChartAccountsCategoryEnum.OTHER_EXPENSE,
1339
+ [TankTypeEnum.SOLE]: ChartAccountsCategoryEnum.SOLE_EXPENSE,
1340
+ [TankTypeEnum.HOLDING]: ChartAccountsCategoryEnum.HOLDING_EXPENSE,
1341
+ [TankTypeEnum.PERSONAL]: ChartAccountsCategoryEnum.PERSONAL_EXPENSE,
1342
+ };
1343
+
1344
+ const INCOME_CATEGORY_BY_TYPE = {
1345
+ [TankTypeEnum.PROPERTY]: ChartAccountsCategoryEnum.PROPERTY_INCOME,
1346
+ [TankTypeEnum.WORK]: ChartAccountsCategoryEnum.WORK_INCOME,
1347
+ [TankTypeEnum.OTHER]: ChartAccountsCategoryEnum.OTHER_INCOME,
1348
+ [TankTypeEnum.SOLE]: ChartAccountsCategoryEnum.SOLE_INCOME,
1349
+ [TankTypeEnum.HOLDING]: ChartAccountsCategoryEnum.HOLDING_INCOME,
1350
+ [TankTypeEnum.PERSONAL]: ChartAccountsCategoryEnum.PERSONAL_INCOME,
1351
+ };
1352
+
1328
1353
  var DateFormatsEnum;
1329
1354
  (function (DateFormatsEnum) {
1330
1355
  /** 23:59 */
@@ -1693,27 +1718,12 @@ var LoanBankTypeEnum;
1693
1718
  LoanBankTypeEnum[LoanBankTypeEnum["OTHER"] = 8] = "OTHER";
1694
1719
  })(LoanBankTypeEnum || (LoanBankTypeEnum = {}));
1695
1720
 
1696
- var LoanFrequencyEnum;
1697
- (function (LoanFrequencyEnum) {
1698
- LoanFrequencyEnum[LoanFrequencyEnum["ANNUAL"] = 1] = "ANNUAL";
1699
- LoanFrequencyEnum[LoanFrequencyEnum["MONTHLY"] = 12] = "MONTHLY";
1700
- LoanFrequencyEnum[LoanFrequencyEnum["FORTNIGHTLY"] = 26] = "FORTNIGHTLY";
1701
- LoanFrequencyEnum[LoanFrequencyEnum["WEEKLY"] = 52] = "WEEKLY";
1702
- })(LoanFrequencyEnum || (LoanFrequencyEnum = {}));
1703
-
1704
1721
  var LoanInterestTypeEnum;
1705
1722
  (function (LoanInterestTypeEnum) {
1706
1723
  LoanInterestTypeEnum[LoanInterestTypeEnum["FIXED_RATE"] = 1] = "FIXED_RATE";
1707
1724
  LoanInterestTypeEnum[LoanInterestTypeEnum["VARIABLE"] = 2] = "VARIABLE";
1708
1725
  })(LoanInterestTypeEnum || (LoanInterestTypeEnum = {}));
1709
1726
 
1710
- var LoanRepaymentFrequencyEnum;
1711
- (function (LoanRepaymentFrequencyEnum) {
1712
- LoanRepaymentFrequencyEnum[LoanRepaymentFrequencyEnum["WEEKLY"] = 1] = "WEEKLY";
1713
- LoanRepaymentFrequencyEnum[LoanRepaymentFrequencyEnum["FORTNIGHTLY"] = 2] = "FORTNIGHTLY";
1714
- LoanRepaymentFrequencyEnum[LoanRepaymentFrequencyEnum["MONTHLY"] = 3] = "MONTHLY";
1715
- })(LoanRepaymentFrequencyEnum || (LoanRepaymentFrequencyEnum = {}));
1716
-
1717
1727
  var LoanRepaymentTypeEnum;
1718
1728
  (function (LoanRepaymentTypeEnum) {
1719
1729
  LoanRepaymentTypeEnum[LoanRepaymentTypeEnum["INTEREST_ONLY"] = 1] = "INTEREST_ONLY";
@@ -3890,14 +3900,6 @@ var IncomeSourceTypeEnum;
3890
3900
  IncomeSourceTypeEnum[IncomeSourceTypeEnum["HOLDING"] = 4] = "HOLDING";
3891
3901
  })(IncomeSourceTypeEnum || (IncomeSourceTypeEnum = {}));
3892
3902
 
3893
- var SalaryForecastFrequencyEnum;
3894
- (function (SalaryForecastFrequencyEnum) {
3895
- SalaryForecastFrequencyEnum[SalaryForecastFrequencyEnum["ANNUAL"] = 1] = "ANNUAL";
3896
- SalaryForecastFrequencyEnum[SalaryForecastFrequencyEnum["MONTHLY"] = 12] = "MONTHLY";
3897
- SalaryForecastFrequencyEnum[SalaryForecastFrequencyEnum["FORTNIGHTLY"] = 26] = "FORTNIGHTLY";
3898
- SalaryForecastFrequencyEnum[SalaryForecastFrequencyEnum["WEEKLY"] = 52] = "WEEKLY";
3899
- })(SalaryForecastFrequencyEnum || (SalaryForecastFrequencyEnum = {}));
3900
-
3901
3903
  class SalaryForecast extends SalaryForecast$1 {
3902
3904
  get grossAmount() {
3903
3905
  return this.netPay + this.tax;
@@ -3907,11 +3909,11 @@ class SalaryForecast extends SalaryForecast$1 {
3907
3909
  }
3908
3910
  get monthlyAmount() {
3909
3911
  switch (this.frequency) {
3910
- case SalaryForecastFrequencyEnum.ANNUAL:
3912
+ case AnnualFrequencyEnum.ANNUAL:
3911
3913
  return this.netPay / FinancialYear.monthsInYear;
3912
- case SalaryForecastFrequencyEnum.FORTNIGHTLY:
3914
+ case AnnualFrequencyEnum.FORTNIGHTLY:
3913
3915
  return this.netPay * FinancialYear.weeksInYear / FinancialYear.monthsInYear / 2;
3914
- case SalaryForecastFrequencyEnum.WEEKLY:
3916
+ case AnnualFrequencyEnum.WEEKLY:
3915
3917
  return this.netPay * FinancialYear.weeksInYear / FinancialYear.monthsInYear;
3916
3918
  default:
3917
3919
  return this.netPay;
@@ -4007,7 +4009,7 @@ class IncomeSourceForecast extends IncomeSourceForecast$1 {
4007
4009
  constructor() {
4008
4010
  super(...arguments);
4009
4011
  this.paygIncome = 0;
4010
- this.frequency = SalaryForecastFrequencyEnum.ANNUAL;
4012
+ this.frequency = AnnualFrequencyEnum.ANNUAL;
4011
4013
  this.isTaxFree = false;
4012
4014
  }
4013
4015
  /**
@@ -9289,27 +9291,15 @@ class DocumentFolderCollection extends Collection {
9289
9291
  }
9290
9292
  }
9291
9293
 
9294
+ class BudgetCollection extends Collection {
9295
+ }
9296
+
9292
9297
  class BudgetRuleCollection extends Collection {
9293
9298
  get expenses() {
9294
9299
  return this.filter(rule => rule.chartAccounts.isExpense());
9295
9300
  }
9296
9301
  get incomes() {
9297
- return this.filter(rule => rule.chartAccounts.isExpense());
9298
- }
9299
- }
9300
-
9301
- class BudgetCollection extends Collection {
9302
- get chartAccountsIds() {
9303
- return this.mapBy('chartAccountsIds').flat();
9304
- }
9305
- get rules() {
9306
- return new BudgetRuleCollection(this.mapBy('rules').flat());
9307
- }
9308
- get expense() {
9309
- return this.findBy('type', BudgetTypeEnum.EXPENSE);
9310
- }
9311
- get income() {
9312
- return this.findBy('type', BudgetTypeEnum.INCOME);
9302
+ return this.filter(rule => rule.chartAccounts.isIncome());
9313
9303
  }
9314
9304
  }
9315
9305
 
@@ -10180,9 +10170,9 @@ class Loan extends Loan$1 {
10180
10170
  }
10181
10171
  get monthlyRepaymentAmount() {
10182
10172
  switch (this.repaymentFrequency) {
10183
- case LoanRepaymentFrequencyEnum.WEEKLY:
10173
+ case AnnualFrequencyEnum.WEEKLY:
10184
10174
  return this.repaymentAmount * FinancialYear.weeksInYear / FinancialYear.monthsInYear;
10185
- case LoanRepaymentFrequencyEnum.FORTNIGHTLY:
10175
+ case AnnualFrequencyEnum.FORTNIGHTLY:
10186
10176
  return this.repaymentAmount * FinancialYear.weeksInYear / FinancialYear.monthsInYear / 2;
10187
10177
  default:
10188
10178
  return this.repaymentAmount;
@@ -11357,6 +11347,11 @@ var SharesightPortfolioMessages;
11357
11347
  })(SharesightPortfolioMessages || (SharesightPortfolioMessages = {}));
11358
11348
 
11359
11349
  class BudgetRule extends BudgetRule$1 {
11350
+ constructor() {
11351
+ super(...arguments);
11352
+ this.startDate = new Date();
11353
+ this.inCalendar = false;
11354
+ }
11360
11355
  }
11361
11356
  __decorate([
11362
11357
  Type(() => Budget)
@@ -11364,6 +11359,24 @@ __decorate([
11364
11359
  __decorate([
11365
11360
  Type(() => ChartAccounts)
11366
11361
  ], BudgetRule.prototype, "chartAccounts", void 0);
11362
+ __decorate([
11363
+ Type(() => Date)
11364
+ ], BudgetRule.prototype, "startDate", void 0);
11365
+ __decorate([
11366
+ Type(() => Date)
11367
+ ], BudgetRule.prototype, "endDate", void 0);
11368
+ __decorate([
11369
+ Type(() => BankAccount)
11370
+ ], BudgetRule.prototype, "bankAccount", void 0);
11371
+ __decorate([
11372
+ Type(() => Property)
11373
+ ], BudgetRule.prototype, "property", void 0);
11374
+ __decorate([
11375
+ Type(() => SoleBusiness)
11376
+ ], BudgetRule.prototype, "business", void 0);
11377
+ __decorate([
11378
+ Type(() => IncomeSource)
11379
+ ], BudgetRule.prototype, "incomeSource", void 0);
11367
11380
 
11368
11381
  var YoutubeVideosEnum;
11369
11382
  (function (YoutubeVideosEnum) {
@@ -11390,45 +11403,33 @@ var YoutubeVideosEnum;
11390
11403
  })(YoutubeVideosEnum || (YoutubeVideosEnum = {}));
11391
11404
 
11392
11405
  class Budget extends Budget$1 {
11393
- get rulesCollection() {
11394
- return new BudgetRuleCollection(this.rules);
11395
- }
11396
- get amount() {
11397
- return this.rulesCollection.sumBy('amount');
11398
- }
11399
- get chartAccountsIds() {
11400
- return this.rulesCollection.mapBy('chartAccounts.id');
11406
+ constructor() {
11407
+ super(...arguments);
11408
+ this.financialYear = new FinancialYear().year;
11401
11409
  }
11402
- getMetadata() {
11403
- return this.isIncome() ? {
11410
+ getMetadata(isIncome) {
11411
+ return isIncome ? {
11404
11412
  name: 'Income',
11405
11413
  thumbnail: 'income-budget.png',
11406
11414
  videoId: YoutubeVideosEnum.BUDGET_INCOME,
11407
11415
  description: 'Keep track of your income by creating budgets based on income categories!',
11408
- categories: {
11409
- personal: ChartAccountsCategoryEnum.PERSONAL_INCOME,
11410
- property: ChartAccountsCategoryEnum.PROPERTY_INCOME,
11411
- work: ChartAccountsCategoryEnum.WORK_INCOME,
11412
- sole: ChartAccountsCategoryEnum.SOLE_INCOME,
11413
- },
11416
+ categories: INCOME_CATEGORY_BY_TYPE,
11414
11417
  } : {
11415
11418
  name: 'Expense',
11416
11419
  thumbnail: 'expense-budget.png',
11417
11420
  videoId: YoutubeVideosEnum.BUDGET_EXPENSE,
11418
11421
  description: 'Effortlessly monitor your spending by setting budgets for selected expense categories!',
11419
- categories: {
11420
- personal: ChartAccountsCategoryEnum.PERSONAL_EXPENSE,
11421
- property: ChartAccountsCategoryEnum.PROPERTY_EXPENSE,
11422
- work: ChartAccountsCategoryEnum.WORK_EXPENSE,
11423
- sole: ChartAccountsCategoryEnum.SOLE_EXPENSE,
11424
- },
11422
+ categories: EXPENSE_CATEGORY_BY_TYPE,
11425
11423
  };
11426
11424
  }
11427
- isIncome() {
11428
- return this.type === BudgetTypeEnum.INCOME;
11425
+ /**
11426
+ * @TODO TT-4522 remove after release
11427
+ */
11428
+ get rulesCollection() {
11429
+ return new BudgetRuleCollection(this.rules);
11429
11430
  }
11430
- isExpense() {
11431
- return this.type === BudgetTypeEnum.EXPENSE;
11431
+ get amount() {
11432
+ return this.rulesCollection.sumBy('amount');
11432
11433
  }
11433
11434
  }
11434
11435
  __decorate([
@@ -11441,13 +11442,6 @@ __decorate([
11441
11442
  class BudgetMetadataInterface {
11442
11443
  }
11443
11444
 
11444
- var FinancialGoalPaymentFrequencyEnum;
11445
- (function (FinancialGoalPaymentFrequencyEnum) {
11446
- FinancialGoalPaymentFrequencyEnum[FinancialGoalPaymentFrequencyEnum["MONTHLY"] = 1] = "MONTHLY";
11447
- FinancialGoalPaymentFrequencyEnum[FinancialGoalPaymentFrequencyEnum["FORTNIGHTLY"] = 2] = "FORTNIGHTLY";
11448
- FinancialGoalPaymentFrequencyEnum[FinancialGoalPaymentFrequencyEnum["WEEKLY"] = 3] = "WEEKLY";
11449
- })(FinancialGoalPaymentFrequencyEnum || (FinancialGoalPaymentFrequencyEnum = {}));
11450
-
11451
11445
  var FinancialGoalTypeEnum;
11452
11446
  (function (FinancialGoalTypeEnum) {
11453
11447
  FinancialGoalTypeEnum[FinancialGoalTypeEnum["DEBIT"] = 1] = "DEBIT";
@@ -11466,11 +11460,32 @@ var FinancialGoalStatusEnum;
11466
11460
  class FinancialGoal extends AbstractModel {
11467
11461
  constructor() {
11468
11462
  super(...arguments);
11469
- this.startDate = new Date();
11463
+ this.startDate = moment().startOf('day').toDate();
11464
+ this.paymentFrequency = DailyFrequencyEnum.MONTHLY;
11465
+ }
11466
+ /**
11467
+ * How much user saved so far.
11468
+ */
11469
+ get progress() {
11470
+ return Math.abs(this.bankAccount.currentBalance - this.initialValue);
11470
11471
  }
11471
- /** Remaining amount to reach the goal */
11472
- getRequiredAmount() {
11473
- return this.targetValue - this.initialValue;
11472
+ /**
11473
+ * How much is left to reach the goal from the current balance.
11474
+ */
11475
+ get remaining() {
11476
+ return this.target - this.progress;
11477
+ }
11478
+ /**
11479
+ * How much needs to deposit to achieve the goal from the start
11480
+ */
11481
+ get target() {
11482
+ return Math.abs(this.targetValue - this.initialValue);
11483
+ }
11484
+ /**
11485
+ * How much of the goal is reached in percents.
11486
+ */
11487
+ get progressPercent() {
11488
+ return this.progress / this.target;
11474
11489
  }
11475
11490
  }
11476
11491
  __decorate([
@@ -11675,10 +11690,10 @@ class EventDispatcherService {
11675
11690
  dispatch2(event) {
11676
11691
  this.eventSubject2.next(event);
11677
11692
  }
11678
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
11679
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EventDispatcherService, providedIn: 'root' }); }
11693
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
11694
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EventDispatcherService, providedIn: 'root' }); }
11680
11695
  }
11681
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EventDispatcherService, decorators: [{
11696
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EventDispatcherService, decorators: [{
11682
11697
  type: Injectable,
11683
11698
  args: [{
11684
11699
  providedIn: 'root'
@@ -11713,10 +11728,10 @@ class SseService {
11713
11728
  })
11714
11729
  .pipe(map((messageEvent) => JSON.parse(messageEvent.data)));
11715
11730
  }
11716
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SseService, deps: [{ token: i0.NgZone }, { token: i3.JwtService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
11717
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SseService, providedIn: 'root' }); }
11731
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SseService, deps: [{ token: i0.NgZone }, { token: i3.JwtService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
11732
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SseService, providedIn: 'root' }); }
11718
11733
  }
11719
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SseService, decorators: [{
11734
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SseService, decorators: [{
11720
11735
  type: Injectable,
11721
11736
  args: [{
11722
11737
  providedIn: 'root'
@@ -11804,10 +11819,10 @@ class DataService {
11804
11819
  setCache(data) {
11805
11820
  this.cache = this.createCollectionInstance(this.collectionClass, data);
11806
11821
  }
11807
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DataService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
11808
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DataService, providedIn: 'root' }); }
11822
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DataService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
11823
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DataService, providedIn: 'root' }); }
11809
11824
  }
11810
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DataService, decorators: [{
11825
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DataService, decorators: [{
11811
11826
  type: Injectable,
11812
11827
  args: [{
11813
11828
  providedIn: 'root'
@@ -11875,10 +11890,10 @@ class ToastService {
11875
11890
  message,
11876
11891
  }));
11877
11892
  }
11878
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
11879
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ToastService, providedIn: 'root' }); }
11893
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
11894
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ToastService, providedIn: 'root' }); }
11880
11895
  }
11881
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ToastService, decorators: [{
11896
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ToastService, decorators: [{
11882
11897
  type: Injectable,
11883
11898
  args: [{
11884
11899
  providedIn: 'root'
@@ -12245,10 +12260,10 @@ let RestService$1 = class RestService extends DataService {
12245
12260
  this.handleResponse([change.model], change.method);
12246
12261
  });
12247
12262
  }
12248
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
12249
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RestService, providedIn: 'root' }); }
12263
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
12264
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RestService, providedIn: 'root' }); }
12250
12265
  };
12251
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RestService$1, decorators: [{
12266
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RestService$1, decorators: [{
12252
12267
  type: Injectable,
12253
12268
  args: [{
12254
12269
  providedIn: 'root'
@@ -12388,10 +12403,10 @@ class BankAccountService extends RestService$1 {
12388
12403
  }
12389
12404
  });
12390
12405
  }
12391
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankAccountService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: SseService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
12392
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankAccountService, providedIn: 'root' }); }
12406
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankAccountService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: SseService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
12407
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankAccountService, providedIn: 'root' }); }
12393
12408
  }
12394
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankAccountService, decorators: [{
12409
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankAccountService, decorators: [{
12395
12410
  type: Injectable,
12396
12411
  args: [{
12397
12412
  providedIn: 'root'
@@ -12496,10 +12511,10 @@ class BankConnectionService extends RestService$1 {
12496
12511
  }
12497
12512
  });
12498
12513
  }
12499
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankConnectionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
12500
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankConnectionService, providedIn: 'root' }); }
12514
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankConnectionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
12515
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankConnectionService, providedIn: 'root' }); }
12501
12516
  }
12502
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankConnectionService, decorators: [{
12517
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankConnectionService, decorators: [{
12503
12518
  type: Injectable,
12504
12519
  args: [{
12505
12520
  providedIn: 'root'
@@ -12565,10 +12580,10 @@ class BankTransactionService extends RestService$1 {
12565
12580
  }
12566
12581
  });
12567
12582
  }
12568
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankTransactionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
12569
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankTransactionService, providedIn: 'root' }); }
12583
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankTransactionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
12584
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankTransactionService, providedIn: 'root' }); }
12570
12585
  }
12571
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankTransactionService, decorators: [{
12586
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankTransactionService, decorators: [{
12572
12587
  type: Injectable,
12573
12588
  args: [{
12574
12589
  providedIn: 'root'
@@ -12602,10 +12617,10 @@ class BasiqTokenService extends RestService$1 {
12602
12617
  const now = new Date().getTime();
12603
12618
  return new BasiqToken(tokenResponse['access_token'], new Date(now + tokenResponse['expires_in'] * 1000));
12604
12619
  }
12605
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
12606
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqTokenService, providedIn: 'root' }); }
12620
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
12621
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqTokenService, providedIn: 'root' }); }
12607
12622
  }
12608
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqTokenService, decorators: [{
12623
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqTokenService, decorators: [{
12609
12624
  type: Injectable,
12610
12625
  args: [{
12611
12626
  providedIn: 'root'
@@ -12747,10 +12762,10 @@ class BasiqService extends RestService$1 {
12747
12762
  }
12748
12763
  });
12749
12764
  }
12750
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: BankConnectionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
12751
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqService, providedIn: 'root' }); }
12765
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: BankConnectionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
12766
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqService, providedIn: 'root' }); }
12752
12767
  }
12753
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqService, decorators: [{
12768
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqService, decorators: [{
12754
12769
  type: Injectable,
12755
12770
  args: [{
12756
12771
  providedIn: 'root'
@@ -12778,10 +12793,10 @@ class BankTransactionCommentService extends RestService$1 {
12778
12793
  this.endpointUri = 'bank-transaction-comments';
12779
12794
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
12780
12795
  }
12781
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankTransactionCommentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
12782
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankTransactionCommentService, providedIn: 'root' }); }
12796
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankTransactionCommentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
12797
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankTransactionCommentService, providedIn: 'root' }); }
12783
12798
  }
12784
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankTransactionCommentService, decorators: [{
12799
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankTransactionCommentService, decorators: [{
12785
12800
  type: Injectable,
12786
12801
  args: [{
12787
12802
  providedIn: 'root'
@@ -12807,10 +12822,10 @@ class BankService extends RestService$1 {
12807
12822
  this.endpointUri = 'banks';
12808
12823
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
12809
12824
  }
12810
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
12811
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankService, providedIn: 'root' }); }
12825
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
12826
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankService, providedIn: 'root' }); }
12812
12827
  }
12813
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankService, decorators: [{
12828
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankService, decorators: [{
12814
12829
  type: Injectable,
12815
12830
  args: [{
12816
12831
  providedIn: 'root'
@@ -12825,10 +12840,10 @@ class BudgetService extends RestService$1 {
12825
12840
  this.endpointUri = 'budgets';
12826
12841
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
12827
12842
  }
12828
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BudgetService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
12829
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BudgetService, providedIn: 'root' }); }
12843
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BudgetService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
12844
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BudgetService, providedIn: 'root' }); }
12830
12845
  }
12831
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BudgetService, decorators: [{
12846
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BudgetService, decorators: [{
12832
12847
  type: Injectable,
12833
12848
  args: [{
12834
12849
  providedIn: 'root'
@@ -12843,6 +12858,24 @@ var BudgetMessagesEnum;
12843
12858
  BudgetMessagesEnum["CONFIRM_DELETE"] = "Are you sure you want to delete budgeting?";
12844
12859
  })(BudgetMessagesEnum || (BudgetMessagesEnum = {}));
12845
12860
 
12861
+ class BudgetRuleService extends RestService$1 {
12862
+ constructor() {
12863
+ super(...arguments);
12864
+ this.modelClass = BudgetRule;
12865
+ this.collectionClass = BudgetRuleCollection;
12866
+ this.endpointUri = 'budget-rules';
12867
+ this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
12868
+ }
12869
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BudgetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
12870
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BudgetRuleService, providedIn: 'root' }); }
12871
+ }
12872
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BudgetRuleService, decorators: [{
12873
+ type: Injectable,
12874
+ args: [{
12875
+ providedIn: 'root'
12876
+ }]
12877
+ }] });
12878
+
12846
12879
  class FinancialGoalService extends RestService$1 {
12847
12880
  constructor() {
12848
12881
  super(...arguments);
@@ -12851,10 +12884,10 @@ class FinancialGoalService extends RestService$1 {
12851
12884
  this.endpointUri = 'financial-goals';
12852
12885
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
12853
12886
  }
12854
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialGoalService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
12855
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialGoalService, providedIn: 'root' }); }
12887
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FinancialGoalService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
12888
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FinancialGoalService, providedIn: 'root' }); }
12856
12889
  }
12857
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialGoalService, decorators: [{
12890
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FinancialGoalService, decorators: [{
12858
12891
  type: Injectable,
12859
12892
  args: [{
12860
12893
  providedIn: 'root'
@@ -12872,10 +12905,10 @@ class ChartAccountsDepreciationService extends RestService$1 {
12872
12905
  this.collectionClass = Collection;
12873
12906
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
12874
12907
  }
12875
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
12876
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' }); }
12908
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
12909
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' }); }
12877
12910
  }
12878
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
12911
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
12879
12912
  type: Injectable,
12880
12913
  args: [{
12881
12914
  providedIn: 'root'
@@ -12914,10 +12947,10 @@ class ChartAccountsService extends RestService$1 {
12914
12947
  return headings;
12915
12948
  }));
12916
12949
  }
12917
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
12918
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsService, providedIn: 'root' }); }
12950
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
12951
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsService, providedIn: 'root' }); }
12919
12952
  }
12920
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsService, decorators: [{
12953
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsService, decorators: [{
12921
12954
  type: Injectable,
12922
12955
  args: [{
12923
12956
  providedIn: 'root'
@@ -13001,10 +13034,10 @@ class ChatService extends RestService$1 {
13001
13034
  this.setCache(cache, true);
13002
13035
  }, ['post']);
13003
13036
  }
13004
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChatService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13005
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChatService, providedIn: 'root' }); }
13037
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChatService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13038
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChatService, providedIn: 'root' }); }
13006
13039
  }
13007
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChatService, decorators: [{
13040
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChatService, decorators: [{
13008
13041
  type: Injectable,
13009
13042
  args: [{
13010
13043
  providedIn: 'root'
@@ -13034,10 +13067,10 @@ class MessageService extends RestService$1 {
13034
13067
  getUnreadChatsAmount() {
13035
13068
  return this.get().pipe(map((messages) => messages.getUnreadChatsAmount()));
13036
13069
  }
13037
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MessageService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13038
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MessageService, providedIn: 'root' }); }
13070
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MessageService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13071
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MessageService, providedIn: 'root' }); }
13039
13072
  }
13040
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MessageService, decorators: [{
13073
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MessageService, decorators: [{
13041
13074
  type: Injectable,
13042
13075
  args: [{
13043
13076
  providedIn: 'root'
@@ -13106,10 +13139,10 @@ class MessageDocumentService extends RestService$1 {
13106
13139
  addBatch(chatId, files) {
13107
13140
  return combineLatest(files.map((file) => this.add(chatId, file))).pipe(map((docsBase) => docsBase.map((docBase) => plainToClass(MessageDocument, docBase))));
13108
13141
  }
13109
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MessageDocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13110
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MessageDocumentService, providedIn: 'root' }); }
13142
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MessageDocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13143
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MessageDocumentService, providedIn: 'root' }); }
13111
13144
  }
13112
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MessageDocumentService, decorators: [{
13145
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MessageDocumentService, decorators: [{
13113
13146
  type: Injectable,
13114
13147
  args: [{
13115
13148
  providedIn: 'root'
@@ -13204,10 +13237,10 @@ class DepreciationService extends RestService$1 {
13204
13237
  this.refreshCache();
13205
13238
  });
13206
13239
  }
13207
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DepreciationService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13208
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DepreciationService, providedIn: 'root' }); }
13240
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DepreciationService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13241
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DepreciationService, providedIn: 'root' }); }
13209
13242
  }
13210
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DepreciationService, decorators: [{
13243
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DepreciationService, decorators: [{
13211
13244
  type: Injectable,
13212
13245
  args: [{
13213
13246
  providedIn: 'root'
@@ -13229,10 +13262,10 @@ class DepreciationCapitalProjectService extends RestService$1 {
13229
13262
  this.endpointUri = 'depreciation-capital-projects';
13230
13263
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
13231
13264
  }
13232
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DepreciationCapitalProjectService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
13233
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' }); }
13265
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DepreciationCapitalProjectService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
13266
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' }); }
13234
13267
  }
13235
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
13268
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
13236
13269
  type: Injectable,
13237
13270
  args: [{
13238
13271
  providedIn: 'root'
@@ -13258,10 +13291,10 @@ class DocumentFolderService extends RestService$1 {
13258
13291
  this.modelClass = DocumentFolder;
13259
13292
  this.disabledMethods = ['deleteBatch', 'postBatch', 'putBatch'];
13260
13293
  }
13261
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
13262
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DocumentFolderService, providedIn: 'root' }); }
13294
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
13295
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DocumentFolderService, providedIn: 'root' }); }
13263
13296
  }
13264
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DocumentFolderService, decorators: [{
13297
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DocumentFolderService, decorators: [{
13265
13298
  type: Injectable,
13266
13299
  args: [{
13267
13300
  providedIn: 'root'
@@ -13286,10 +13319,10 @@ class DocumentService extends RestService$1 {
13286
13319
  postFiles(folder, files) {
13287
13320
  return this.postParallel(files.map(file => plainToClass(Document, { folder, file })));
13288
13321
  }
13289
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13290
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DocumentService, providedIn: 'root' }); }
13322
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13323
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DocumentService, providedIn: 'root' }); }
13291
13324
  }
13292
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DocumentService, decorators: [{
13325
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DocumentService, decorators: [{
13293
13326
  type: Injectable,
13294
13327
  args: [{
13295
13328
  providedIn: 'root'
@@ -13374,10 +13407,10 @@ class FacebookService {
13374
13407
  });
13375
13408
  });
13376
13409
  }
13377
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FacebookService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13378
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FacebookService, providedIn: 'root' }); }
13410
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FacebookService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13411
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FacebookService, providedIn: 'root' }); }
13379
13412
  }
13380
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FacebookService, decorators: [{
13413
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FacebookService, decorators: [{
13381
13414
  type: Injectable,
13382
13415
  args: [{
13383
13416
  providedIn: 'root'
@@ -13444,10 +13477,10 @@ class GoogleService {
13444
13477
  logout() {
13445
13478
  google.accounts.id.disableAutoSelect();
13446
13479
  }
13447
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: GoogleService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13448
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: GoogleService, providedIn: 'root' }); }
13480
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: GoogleService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13481
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: GoogleService, providedIn: 'root' }); }
13449
13482
  }
13450
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: GoogleService, decorators: [{
13483
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: GoogleService, decorators: [{
13451
13484
  type: Injectable,
13452
13485
  args: [{
13453
13486
  providedIn: 'root'
@@ -13479,10 +13512,10 @@ class FileService extends RestService$1 {
13479
13512
  download(file) {
13480
13513
  return this.http.get(`${this.apiUrl}/${file.id}/download`, { responseType: 'blob' });
13481
13514
  }
13482
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
13483
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FileService, providedIn: 'root' }); }
13515
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
13516
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FileService, providedIn: 'root' }); }
13484
13517
  }
13485
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FileService, decorators: [{
13518
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FileService, decorators: [{
13486
13519
  type: Injectable,
13487
13520
  args: [{
13488
13521
  providedIn: 'root'
@@ -13572,10 +13605,10 @@ class ClientInviteService extends RestService$1 {
13572
13605
  }
13573
13606
  });
13574
13607
  }
13575
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientInviteService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13576
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientInviteService, providedIn: 'root' }); }
13608
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientInviteService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13609
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientInviteService, providedIn: 'root' }); }
13577
13610
  }
13578
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientInviteService, decorators: [{
13611
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientInviteService, decorators: [{
13579
13612
  type: Injectable,
13580
13613
  args: [{
13581
13614
  providedIn: 'root'
@@ -13665,10 +13698,10 @@ class ClientMovementService extends RestService$1 {
13665
13698
  // this.updateCache([clientMovement], 'delete');
13666
13699
  }));
13667
13700
  }
13668
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13669
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientMovementService, providedIn: 'root' }); }
13701
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13702
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientMovementService, providedIn: 'root' }); }
13670
13703
  }
13671
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientMovementService, decorators: [{
13704
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientMovementService, decorators: [{
13672
13705
  type: Injectable,
13673
13706
  args: [{
13674
13707
  providedIn: 'root'
@@ -13729,10 +13762,10 @@ class EmployeeService extends RestService$1 {
13729
13762
  index === -1 ? employee.roles.push(role) : employee.roles.splice(index, 1);
13730
13763
  return super.put(employee, `${this.environment.apiV2}/${this.endpointUri}/${employee.id}`);
13731
13764
  }
13732
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
13733
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeService, providedIn: 'root' }); }
13765
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
13766
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeService, providedIn: 'root' }); }
13734
13767
  }
13735
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeService, decorators: [{
13768
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeService, decorators: [{
13736
13769
  type: Injectable,
13737
13770
  args: [{
13738
13771
  providedIn: 'root'
@@ -13793,10 +13826,10 @@ class EmployeeInviteService extends RestService$1 {
13793
13826
  return updatedInvite;
13794
13827
  }));
13795
13828
  }
13796
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
13797
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' }); }
13829
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
13830
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' }); }
13798
13831
  }
13799
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeInviteService, decorators: [{
13832
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeInviteService, decorators: [{
13800
13833
  type: Injectable,
13801
13834
  args: [{
13802
13835
  providedIn: 'root'
@@ -13820,10 +13853,10 @@ class ClientPortfolioReportService {
13820
13853
  return new ClientPortfolioReportCollection(clientReports);
13821
13854
  }));
13822
13855
  }
13823
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientPortfolioReportService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13824
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' }); }
13856
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientPortfolioReportService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13857
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' }); }
13825
13858
  }
13826
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
13859
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
13827
13860
  type: Injectable,
13828
13861
  args: [{
13829
13862
  providedIn: 'root'
@@ -13877,10 +13910,10 @@ class FirmService {
13877
13910
  getByType(type) {
13878
13911
  return this.getAll().pipe(map((firms) => firms.filter((firm) => firm.type === type)));
13879
13912
  }
13880
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FirmService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13881
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FirmService, providedIn: 'root' }); }
13913
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FirmService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13914
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FirmService, providedIn: 'root' }); }
13882
13915
  }
13883
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FirmService, decorators: [{
13916
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FirmService, decorators: [{
13884
13917
  type: Injectable,
13885
13918
  args: [{
13886
13919
  providedIn: 'root'
@@ -13898,10 +13931,10 @@ class FirmBranchService extends RestService$1 {
13898
13931
  this.collectionClass = (Collection);
13899
13932
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
13900
13933
  }
13901
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FirmBranchService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
13902
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FirmBranchService, providedIn: 'root' }); }
13934
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FirmBranchService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
13935
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FirmBranchService, providedIn: 'root' }); }
13903
13936
  }
13904
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FirmBranchService, decorators: [{
13937
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FirmBranchService, decorators: [{
13905
13938
  type: Injectable,
13906
13939
  args: [{
13907
13940
  providedIn: 'root'
@@ -14142,10 +14175,10 @@ class RestService {
14142
14175
  getCache() {
14143
14176
  return clone(this.cache);
14144
14177
  }
14145
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14146
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RestService, providedIn: 'root' }); }
14178
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14179
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RestService, providedIn: 'root' }); }
14147
14180
  }
14148
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RestService, decorators: [{
14181
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RestService, decorators: [{
14149
14182
  type: Injectable,
14150
14183
  args: [{
14151
14184
  providedIn: 'root'
@@ -14220,10 +14253,10 @@ class IncomeSourceForecastService extends RestService {
14220
14253
  return incomeSource.incomeSourceForecasts;
14221
14254
  }).flat();
14222
14255
  }
14223
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14224
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' }); }
14256
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14257
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' }); }
14225
14258
  }
14226
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
14259
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
14227
14260
  type: Injectable,
14228
14261
  args: [{
14229
14262
  providedIn: 'root'
@@ -14297,10 +14330,10 @@ class SalaryForecastService extends RestService {
14297
14330
  return incomeSource.salaryForecasts;
14298
14331
  }).flat();
14299
14332
  }
14300
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SalaryForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14301
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SalaryForecastService, providedIn: 'root' }); }
14333
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SalaryForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14334
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SalaryForecastService, providedIn: 'root' }); }
14302
14335
  }
14303
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SalaryForecastService, decorators: [{
14336
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SalaryForecastService, decorators: [{
14304
14337
  type: Injectable,
14305
14338
  args: [{
14306
14339
  providedIn: 'root'
@@ -14382,10 +14415,10 @@ class SoleForecastService extends RestService {
14382
14415
  this.refreshCache();
14383
14416
  });
14384
14417
  }
14385
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14386
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleForecastService, providedIn: 'root' }); }
14418
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14419
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleForecastService, providedIn: 'root' }); }
14387
14420
  }
14388
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleForecastService, decorators: [{
14421
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleForecastService, decorators: [{
14389
14422
  type: Injectable,
14390
14423
  args: [{
14391
14424
  providedIn: 'root'
@@ -14468,10 +14501,10 @@ class IncomeSourceService extends RestService {
14468
14501
  this.refreshCache();
14469
14502
  });
14470
14503
  }
14471
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14472
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceService, providedIn: 'root' }); }
14504
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14505
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceService, providedIn: 'root' }); }
14473
14506
  }
14474
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceService, decorators: [{
14507
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceService, decorators: [{
14475
14508
  type: Injectable,
14476
14509
  args: [{
14477
14510
  providedIn: 'root'
@@ -14544,10 +14577,10 @@ class BorrowingExpenseService {
14544
14577
  return combinedBorrowingExpenses;
14545
14578
  }));
14546
14579
  }
14547
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BorrowingExpenseService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14548
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' }); }
14580
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BorrowingExpenseService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14581
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' }); }
14549
14582
  }
14550
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BorrowingExpenseService, decorators: [{
14583
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BorrowingExpenseService, decorators: [{
14551
14584
  type: Injectable,
14552
14585
  args: [{
14553
14586
  providedIn: 'root'
@@ -14631,10 +14664,10 @@ class LoanService extends RestService$1 {
14631
14664
  delete(loan) {
14632
14665
  return super.delete(loan, `${this.environment.apiV2}/loans/${loan.id}`);
14633
14666
  }
14634
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: LoanService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14635
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: LoanService, providedIn: 'root' }); }
14667
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: LoanService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14668
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: LoanService, providedIn: 'root' }); }
14636
14669
  }
14637
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: LoanService, decorators: [{
14670
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: LoanService, decorators: [{
14638
14671
  type: Injectable,
14639
14672
  args: [{
14640
14673
  providedIn: 'root'
@@ -14660,10 +14693,10 @@ class BorrowingReportService extends RestService$1 {
14660
14693
  this.collectionClass = Collection;
14661
14694
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
14662
14695
  }
14663
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BorrowingReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14664
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BorrowingReportService, providedIn: 'root' }); }
14696
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BorrowingReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14697
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BorrowingReportService, providedIn: 'root' }); }
14665
14698
  }
14666
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BorrowingReportService, decorators: [{
14699
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BorrowingReportService, decorators: [{
14667
14700
  type: Injectable,
14668
14701
  args: [{
14669
14702
  providedIn: 'root'
@@ -14688,10 +14721,10 @@ class PropertyCategoryService extends RestService$1 {
14688
14721
  this.endpointUri = 'properties/categories';
14689
14722
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
14690
14723
  }
14691
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14692
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' }); }
14724
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14725
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' }); }
14693
14726
  }
14694
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCategoryService, decorators: [{
14727
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCategoryService, decorators: [{
14695
14728
  type: Injectable,
14696
14729
  args: [{
14697
14730
  providedIn: 'root'
@@ -14713,10 +14746,10 @@ class PropertyCategoryMovementService extends RestService$1 {
14713
14746
  this.listenCSE(Property, this.refreshCache, ['post']);
14714
14747
  this.listenCSE(PropertyValuation, this.refreshCache);
14715
14748
  }
14716
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCategoryMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14717
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' }); }
14749
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCategoryMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14750
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' }); }
14718
14751
  }
14719
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
14752
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
14720
14753
  type: Injectable,
14721
14754
  args: [{
14722
14755
  providedIn: 'root'
@@ -14797,10 +14830,10 @@ class TaxExemptionService extends DataService {
14797
14830
  this.collectionClass = TaxExemptionCollection;
14798
14831
  this.setCache(TaxExemptions);
14799
14832
  }
14800
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxExemptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
14801
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxExemptionService, providedIn: 'root' }); }
14833
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxExemptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
14834
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxExemptionService, providedIn: 'root' }); }
14802
14835
  }
14803
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxExemptionService, decorators: [{
14836
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxExemptionService, decorators: [{
14804
14837
  type: Injectable,
14805
14838
  args: [{
14806
14839
  providedIn: 'root'
@@ -14816,10 +14849,10 @@ class PropertySaleService extends RestService$1 {
14816
14849
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
14817
14850
  this.roles = [UserRolesEnum$1.PROPERTY_TANK];
14818
14851
  }
14819
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14820
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertySaleService, providedIn: 'root' }); }
14852
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14853
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertySaleService, providedIn: 'root' }); }
14821
14854
  }
14822
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertySaleService, decorators: [{
14855
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertySaleService, decorators: [{
14823
14856
  type: Injectable,
14824
14857
  args: [{
14825
14858
  providedIn: 'root'
@@ -14873,10 +14906,10 @@ class PropertyShareService extends RestService$1 {
14873
14906
  listenSalesChanges() {
14874
14907
  this.listenCSE(PropertySale, this.refreshCache, ['post', 'delete']);
14875
14908
  }
14876
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyShareService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14877
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyShareService, providedIn: 'root' }); }
14909
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyShareService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14910
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyShareService, providedIn: 'root' }); }
14878
14911
  }
14879
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyShareService, decorators: [{
14912
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyShareService, decorators: [{
14880
14913
  type: Injectable,
14881
14914
  args: [{
14882
14915
  providedIn: 'root'
@@ -14895,10 +14928,10 @@ class PropertyValuationService extends RestService$1 {
14895
14928
  this.disabledMethods = ['postBatch', 'putBatch'];
14896
14929
  this.useBackendError = true;
14897
14930
  }
14898
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyValuationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14899
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyValuationService, providedIn: 'root' }); }
14931
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyValuationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14932
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyValuationService, providedIn: 'root' }); }
14900
14933
  }
14901
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyValuationService, decorators: [{
14934
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyValuationService, decorators: [{
14902
14935
  type: Injectable,
14903
14936
  args: [{
14904
14937
  providedIn: 'root'
@@ -15042,10 +15075,10 @@ class PropertyService extends RestService$1 {
15042
15075
  return of({ growthPercent: 0, lowMarketValue: 0, marketValue: 0, highMarketValue: 0, confidence: PropertyCorelogicStatsConfidenceTypeEnum.LOW });
15043
15076
  }));
15044
15077
  }
15045
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15046
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
15078
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15079
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
15047
15080
  }
15048
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyService, decorators: [{
15081
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyService, decorators: [{
15049
15082
  type: Injectable,
15050
15083
  args: [{
15051
15084
  providedIn: 'root'
@@ -15102,10 +15135,10 @@ class ServiceNotificationService extends RestService {
15102
15135
  this.eventDispatcherService.dispatch(new AppEvent(AppEventTypeEnum.NOTIFICATION_ADDED, notification));
15103
15136
  });
15104
15137
  }
15105
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServiceNotificationService, deps: [{ token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable }); }
15106
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' }); }
15138
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServiceNotificationService, deps: [{ token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable }); }
15139
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' }); }
15107
15140
  }
15108
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServiceNotificationService, decorators: [{
15141
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServiceNotificationService, decorators: [{
15109
15142
  type: Injectable,
15110
15143
  args: [{
15111
15144
  providedIn: 'root'
@@ -15128,10 +15161,10 @@ class SoleBusinessService extends RestService$1 {
15128
15161
  this.endpointUri = 'sole-businesses';
15129
15162
  this.roles = [UserRolesEnum$1.SOLE_TANK];
15130
15163
  }
15131
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15132
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessService, providedIn: 'root' }); }
15164
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15165
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessService, providedIn: 'root' }); }
15133
15166
  }
15134
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessService, decorators: [{
15167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessService, decorators: [{
15135
15168
  type: Injectable,
15136
15169
  args: [{
15137
15170
  providedIn: 'root'
@@ -15144,10 +15177,10 @@ class SoleBusinessActivityService extends RestService {
15144
15177
  this.modelClass = SoleBusinessActivity;
15145
15178
  this.url = 'sole-business-activities';
15146
15179
  }
15147
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15148
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' }); }
15180
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15181
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' }); }
15149
15182
  }
15150
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
15183
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
15151
15184
  type: Injectable,
15152
15185
  args: [{
15153
15186
  providedIn: 'root'
@@ -15176,10 +15209,10 @@ class SoleBusinessLossService extends RestService$1 {
15176
15209
  this.refreshCache();
15177
15210
  });
15178
15211
  }
15179
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessLossService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15180
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' }); }
15212
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessLossService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15213
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' }); }
15181
15214
  }
15182
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessLossService, decorators: [{
15215
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessLossService, decorators: [{
15183
15216
  type: Injectable,
15184
15217
  args: [{
15185
15218
  providedIn: 'root'
@@ -15198,10 +15231,10 @@ class SoleBusinessLossOffsetRuleService extends RestService {
15198
15231
  this.modelClass = SoleBusinessLossOffsetRule;
15199
15232
  this.url = 'sole-business-loss-offset-rules';
15200
15233
  }
15201
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15202
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' }); }
15234
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15235
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' }); }
15203
15236
  }
15204
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
15237
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
15205
15238
  type: Injectable,
15206
15239
  args: [{
15207
15240
  providedIn: 'root'
@@ -15214,10 +15247,10 @@ class SoleContactService extends RestService {
15214
15247
  this.modelClass = SoleContact;
15215
15248
  this.url = 'sole-contacts';
15216
15249
  }
15217
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15218
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleContactService, providedIn: 'root' }); }
15250
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15251
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleContactService, providedIn: 'root' }); }
15219
15252
  }
15220
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleContactService, decorators: [{
15253
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleContactService, decorators: [{
15221
15254
  type: Injectable,
15222
15255
  args: [{
15223
15256
  providedIn: 'root'
@@ -15273,10 +15306,10 @@ class SoleDepreciationMethodService {
15273
15306
  this.get().subscribe();
15274
15307
  });
15275
15308
  }
15276
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDepreciationMethodService, deps: [{ token: i1.HttpClient }, { token: 'environment' }, { token: EventDispatcherService }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable }); }
15277
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDepreciationMethodService, providedIn: 'root' }); }
15309
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDepreciationMethodService, deps: [{ token: i1.HttpClient }, { token: 'environment' }, { token: EventDispatcherService }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable }); }
15310
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDepreciationMethodService, providedIn: 'root' }); }
15278
15311
  }
15279
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDepreciationMethodService, decorators: [{
15312
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDepreciationMethodService, decorators: [{
15280
15313
  type: Injectable,
15281
15314
  args: [{
15282
15315
  providedIn: 'root'
@@ -15301,10 +15334,10 @@ class SoleDetailsService extends RestService$1 {
15301
15334
  get() {
15302
15335
  return super.get().pipe(map(soleDetails => soleDetails.length ? soleDetails : new Collection([plainToClass(SoleDetails, {})])));
15303
15336
  }
15304
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15305
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDetailsService, providedIn: 'root' }); }
15337
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15338
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDetailsService, providedIn: 'root' }); }
15306
15339
  }
15307
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDetailsService, decorators: [{
15340
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDetailsService, decorators: [{
15308
15341
  type: Injectable,
15309
15342
  args: [{
15310
15343
  providedIn: 'root'
@@ -15338,10 +15371,10 @@ class SoleInvoiceService extends RestService$1 {
15338
15371
  }
15339
15372
  return this.cache.last.number + 1;
15340
15373
  }
15341
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleInvoiceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15342
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' }); }
15374
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleInvoiceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15375
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' }); }
15343
15376
  }
15344
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleInvoiceService, decorators: [{
15377
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleInvoiceService, decorators: [{
15345
15378
  type: Injectable,
15346
15379
  args: [{
15347
15380
  providedIn: 'root'
@@ -15357,10 +15390,10 @@ class SoleInvoiceTemplateService extends RestService {
15357
15390
  this.modelClass = SoleInvoiceTemplate;
15358
15391
  this.url = 'sole-invoice-templates';
15359
15392
  }
15360
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15361
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' }); }
15393
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15394
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' }); }
15362
15395
  }
15363
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
15396
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
15364
15397
  type: Injectable,
15365
15398
  args: [{
15366
15399
  providedIn: 'root'
@@ -15381,10 +15414,10 @@ class BasReportService extends RestService {
15381
15414
  this.modelClass = BasReport;
15382
15415
  this.url = 'bas-reports';
15383
15416
  }
15384
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15385
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasReportService, providedIn: 'root' }); }
15417
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15418
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasReportService, providedIn: 'root' }); }
15386
15419
  }
15387
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasReportService, decorators: [{
15420
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasReportService, decorators: [{
15388
15421
  type: Injectable,
15389
15422
  args: [{
15390
15423
  providedIn: 'root'
@@ -15408,10 +15441,10 @@ class ServicePaymentService extends RestService$1 {
15408
15441
  }
15409
15442
  return this.http.get(`${this.environment.apiV2}/service-payments/${payment.id}/invoice-url`);
15410
15443
  }
15411
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15412
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePaymentService, providedIn: 'root' }); }
15444
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15445
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePaymentService, providedIn: 'root' }); }
15413
15446
  }
15414
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePaymentService, decorators: [{
15447
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePaymentService, decorators: [{
15415
15448
  type: Injectable,
15416
15449
  args: [{
15417
15450
  providedIn: 'root'
@@ -15443,10 +15476,10 @@ class ServicePaymentMethodService extends RestService$1 {
15443
15476
  return this.http.put(`${this.apiUrl}/${paymentMethod.id}/default`, {})
15444
15477
  .pipe(map((updatedPaymentMethod) => plainToClass(ServicePaymentMethod, updatedPaymentMethod)));
15445
15478
  }
15446
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePaymentMethodService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15447
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' }); }
15479
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePaymentMethodService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15480
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' }); }
15448
15481
  }
15449
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
15482
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
15450
15483
  type: Injectable,
15451
15484
  args: [{
15452
15485
  providedIn: 'root'
@@ -15467,10 +15500,10 @@ class ServicePriceService extends RestService$1 {
15467
15500
  this.collectionClass = ServicePriceCollection;
15468
15501
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
15469
15502
  }
15470
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15471
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePriceService, providedIn: 'root' }); }
15503
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15504
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePriceService, providedIn: 'root' }); }
15472
15505
  }
15473
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePriceService, decorators: [{
15506
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePriceService, decorators: [{
15474
15507
  type: Injectable,
15475
15508
  args: [{
15476
15509
  providedIn: 'root'
@@ -15555,10 +15588,10 @@ class SubscriptionService extends RestService$1 {
15555
15588
  get(path = this.apiUrl) {
15556
15589
  return super.get(path).pipe(map(subscriptions => subscriptions.sortBy('isActive', 'ask')));
15557
15590
  }
15558
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SubscriptionService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15559
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SubscriptionService, providedIn: 'root' }); }
15591
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SubscriptionService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15592
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SubscriptionService, providedIn: 'root' }); }
15560
15593
  }
15561
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SubscriptionService, decorators: [{
15594
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SubscriptionService, decorators: [{
15562
15595
  type: Injectable,
15563
15596
  args: [{
15564
15597
  providedIn: 'root'
@@ -15576,10 +15609,10 @@ class ServiceProductService extends RestService$1 {
15576
15609
  this.endpointUri = 'service-products';
15577
15610
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
15578
15611
  }
15579
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15580
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServiceProductService, providedIn: 'root' }); }
15612
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15613
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServiceProductService, providedIn: 'root' }); }
15581
15614
  }
15582
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServiceProductService, decorators: [{
15615
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServiceProductService, decorators: [{
15583
15616
  type: Injectable,
15584
15617
  args: [{
15585
15618
  providedIn: 'root'
@@ -15715,10 +15748,10 @@ class TaxReviewHistoryService extends RestService {
15715
15748
  this.updateCache();
15716
15749
  });
15717
15750
  }
15718
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReviewHistoryService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15719
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' }); }
15751
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReviewHistoryService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15752
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' }); }
15720
15753
  }
15721
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
15754
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
15722
15755
  type: Injectable,
15723
15756
  args: [{
15724
15757
  providedIn: 'root'
@@ -15811,10 +15844,10 @@ class TaxReviewService extends RestService {
15811
15844
  }
15812
15845
  });
15813
15846
  }
15814
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReviewService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15815
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReviewService, providedIn: 'root' }); }
15847
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReviewService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15848
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReviewService, providedIn: 'root' }); }
15816
15849
  }
15817
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReviewService, decorators: [{
15850
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReviewService, decorators: [{
15818
15851
  type: Injectable,
15819
15852
  args: [{
15820
15853
  providedIn: 'root'
@@ -16145,10 +16178,10 @@ class TaxSummaryService {
16145
16178
  this.getForecast().subscribe();
16146
16179
  });
16147
16180
  }
16148
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxSummaryService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16149
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxSummaryService, providedIn: 'root' }); }
16181
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxSummaryService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16182
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxSummaryService, providedIn: 'root' }); }
16150
16183
  }
16151
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxSummaryService, decorators: [{
16184
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxSummaryService, decorators: [{
16152
16185
  type: Injectable,
16153
16186
  args: [{
16154
16187
  providedIn: 'root'
@@ -16169,10 +16202,10 @@ class AllocationRuleService extends RestService$1 {
16169
16202
  getCustomHttpErrorMessages() {
16170
16203
  return { 422: 'You can only have 10 conditions in a rule' };
16171
16204
  }
16172
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16173
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AllocationRuleService, providedIn: 'root' }); }
16205
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16206
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AllocationRuleService, providedIn: 'root' }); }
16174
16207
  }
16175
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AllocationRuleService, decorators: [{
16208
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AllocationRuleService, decorators: [{
16176
16209
  type: Injectable,
16177
16210
  args: [{
16178
16211
  providedIn: 'root'
@@ -16277,10 +16310,10 @@ class TransactionAllocationService extends RestService {
16277
16310
  }
16278
16311
  });
16279
16312
  }
16280
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TransactionAllocationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16281
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' }); }
16313
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TransactionAllocationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16314
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' }); }
16282
16315
  }
16283
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TransactionAllocationService, decorators: [{
16316
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TransactionAllocationService, decorators: [{
16284
16317
  type: Injectable,
16285
16318
  args: [{
16286
16319
  providedIn: 'root'
@@ -16532,10 +16565,10 @@ class TransactionService extends RestService {
16532
16565
  }
16533
16566
  });
16534
16567
  }
16535
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TransactionService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16536
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TransactionService, providedIn: 'root' }); }
16568
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TransactionService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16569
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TransactionService, providedIn: 'root' }); }
16537
16570
  }
16538
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TransactionService, decorators: [{
16571
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TransactionService, decorators: [{
16539
16572
  type: Injectable,
16540
16573
  args: [{
16541
16574
  providedIn: 'root'
@@ -16561,10 +16594,10 @@ class PriorTransactionService extends RestService$1 {
16561
16594
  const financialYear = new FinancialYear(new FinancialYear().year - 1);
16562
16595
  return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(transactions => transactions.filterByFinancialYear('date', null, financialYear)));
16563
16596
  }
16564
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PriorTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16565
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PriorTransactionService, providedIn: 'root' }); }
16597
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PriorTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16598
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PriorTransactionService, providedIn: 'root' }); }
16566
16599
  }
16567
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PriorTransactionService, decorators: [{
16600
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PriorTransactionService, decorators: [{
16568
16601
  type: Injectable,
16569
16602
  args: [{
16570
16603
  providedIn: 'root'
@@ -16586,10 +16619,10 @@ class InvoiceTransactionsService extends RestService$1 {
16586
16619
  this.endpointUri = 'invoices/transactions';
16587
16620
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
16588
16621
  }
16589
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InvoiceTransactionsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16590
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InvoiceTransactionsService, providedIn: 'root' }); }
16622
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InvoiceTransactionsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16623
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InvoiceTransactionsService, providedIn: 'root' }); }
16591
16624
  }
16592
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InvoiceTransactionsService, decorators: [{
16625
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InvoiceTransactionsService, decorators: [{
16593
16626
  type: Injectable,
16594
16627
  args: [{
16595
16628
  providedIn: 'root'
@@ -16613,10 +16646,10 @@ class YoutubeService {
16613
16646
  title: item.snippet.title
16614
16647
  }))));
16615
16648
  }
16616
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: YoutubeService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16617
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: YoutubeService, providedIn: 'root' }); }
16649
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: YoutubeService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16650
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: YoutubeService, providedIn: 'root' }); }
16618
16651
  }
16619
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: YoutubeService, decorators: [{
16652
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: YoutubeService, decorators: [{
16620
16653
  type: Injectable,
16621
16654
  args: [{
16622
16655
  providedIn: 'root'
@@ -16636,10 +16669,10 @@ class VehicleService extends RestService$1 {
16636
16669
  this.collectionClass = (Collection);
16637
16670
  this.modelClass = Vehicle;
16638
16671
  }
16639
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16640
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleService, providedIn: 'root' }); }
16672
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16673
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleService, providedIn: 'root' }); }
16641
16674
  }
16642
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleService, decorators: [{
16675
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleService, decorators: [{
16643
16676
  type: Injectable,
16644
16677
  args: [{
16645
16678
  providedIn: 'root'
@@ -16669,10 +16702,10 @@ class VehicleClaimService extends RestService$1 {
16669
16702
  this.refreshCache();
16670
16703
  });
16671
16704
  }
16672
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleClaimService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16673
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleClaimService, providedIn: 'root' }); }
16705
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleClaimService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16706
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleClaimService, providedIn: 'root' }); }
16674
16707
  }
16675
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleClaimService, decorators: [{
16708
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleClaimService, decorators: [{
16676
16709
  type: Injectable,
16677
16710
  args: [{
16678
16711
  providedIn: 'root'
@@ -16734,10 +16767,10 @@ class VehicleClaimDetailsService {
16734
16767
  const vehicleClaimDetails = plainToClass(VehicleClaimDetails, Object.assign({}, this.cache, { isManual: true }));
16735
16768
  this.update(vehicleClaimDetails).subscribe();
16736
16769
  }
16737
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleClaimDetailsService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: EventDispatcherService }], target: i0.ɵɵFactoryTarget.Injectable }); }
16738
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleClaimDetailsService, providedIn: 'root' }); }
16770
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleClaimDetailsService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: EventDispatcherService }], target: i0.ɵɵFactoryTarget.Injectable }); }
16771
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleClaimDetailsService, providedIn: 'root' }); }
16739
16772
  }
16740
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleClaimDetailsService, decorators: [{
16773
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleClaimDetailsService, decorators: [{
16741
16774
  type: Injectable,
16742
16775
  args: [{
16743
16776
  providedIn: 'root'
@@ -16758,10 +16791,10 @@ class VehicleLogbookService extends RestService$1 {
16758
16791
  this.collectionClass = VehicleLogbookCollection;
16759
16792
  this.modelClass = VehicleLogbook;
16760
16793
  }
16761
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16762
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' }); }
16794
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16795
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' }); }
16763
16796
  }
16764
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleLogbookService, decorators: [{
16797
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleLogbookService, decorators: [{
16765
16798
  type: Injectable,
16766
16799
  args: [{
16767
16800
  providedIn: 'root'
@@ -16784,10 +16817,10 @@ class AnnualClientDetailsService extends RestService$1 {
16784
16817
  this.endpointUri = 'annual-client-details';
16785
16818
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
16786
16819
  }
16787
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AnnualClientDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16788
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AnnualClientDetailsService, providedIn: 'root' }); }
16820
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AnnualClientDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16821
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AnnualClientDetailsService, providedIn: 'root' }); }
16789
16822
  }
16790
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
16823
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
16791
16824
  type: Injectable,
16792
16825
  args: [{
16793
16826
  providedIn: 'root'
@@ -16817,10 +16850,10 @@ class OccupationService {
16817
16850
  }
16818
16851
  return this.occupationsSubject.asObservable();
16819
16852
  }
16820
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: OccupationService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16821
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: OccupationService, providedIn: 'root' }); }
16853
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: OccupationService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16854
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: OccupationService, providedIn: 'root' }); }
16822
16855
  }
16823
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: OccupationService, decorators: [{
16856
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: OccupationService, decorators: [{
16824
16857
  type: Injectable,
16825
16858
  args: [{
16826
16859
  providedIn: 'root'
@@ -16842,10 +16875,10 @@ class ClientCouponService extends RestService$1 {
16842
16875
  this.endpointUri = 'users/current/promo-code';
16843
16876
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
16844
16877
  }
16845
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientCouponService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16846
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientCouponService, providedIn: 'root' }); }
16878
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientCouponService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16879
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientCouponService, providedIn: 'root' }); }
16847
16880
  }
16848
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientCouponService, decorators: [{
16881
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientCouponService, decorators: [{
16849
16882
  type: Injectable,
16850
16883
  args: [{
16851
16884
  providedIn: 'root'
@@ -16860,10 +16893,10 @@ class CapitalLossService extends RestService$1 {
16860
16893
  this.collectionClass = (Collection);
16861
16894
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
16862
16895
  }
16863
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CapitalLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16864
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CapitalLossService, providedIn: 'root' }); }
16896
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CapitalLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16897
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CapitalLossService, providedIn: 'root' }); }
16865
16898
  }
16866
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CapitalLossService, decorators: [{
16899
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CapitalLossService, decorators: [{
16867
16900
  type: Injectable,
16868
16901
  args: [{
16869
16902
  providedIn: 'root'
@@ -16926,10 +16959,10 @@ class UserEventSettingService extends RestService$1 {
16926
16959
  this.endpointUri = 'user-event-settings';
16927
16960
  this.disabledMethods = ['postBatch', 'putBatch', 'delete', 'deleteBatch'];
16928
16961
  }
16929
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16930
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserEventSettingService, providedIn: 'root' }); }
16962
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16963
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserEventSettingService, providedIn: 'root' }); }
16931
16964
  }
16932
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserEventSettingService, decorators: [{
16965
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserEventSettingService, decorators: [{
16933
16966
  type: Injectable,
16934
16967
  args: [{
16935
16968
  providedIn: 'root'
@@ -16944,10 +16977,10 @@ class UserEventTypeService extends RestService$1 {
16944
16977
  this.endpointUri = 'user-event-types';
16945
16978
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
16946
16979
  }
16947
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16948
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserEventTypeService, providedIn: 'root' }); }
16980
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16981
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserEventTypeService, providedIn: 'root' }); }
16949
16982
  }
16950
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserEventTypeService, decorators: [{
16983
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserEventTypeService, decorators: [{
16951
16984
  type: Injectable,
16952
16985
  args: [{
16953
16986
  providedIn: 'root'
@@ -16974,10 +17007,10 @@ class UsersInviteService extends RestService {
16974
17007
  this.modelClass = RegistrationInvite;
16975
17008
  this.url = 'users/invite';
16976
17009
  }
16977
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16978
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UsersInviteService, providedIn: 'root' }); }
17010
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17011
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UsersInviteService, providedIn: 'root' }); }
16979
17012
  }
16980
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UsersInviteService, decorators: [{
17013
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UsersInviteService, decorators: [{
16981
17014
  type: Injectable,
16982
17015
  args: [{
16983
17016
  providedIn: 'root'
@@ -17092,10 +17125,10 @@ class UserService extends RestService$1 {
17092
17125
  this.setCache([user], true);
17093
17126
  }, ['post', 'put']);
17094
17127
  }
17095
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17096
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserService, providedIn: 'root' }); }
17128
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17129
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserService, providedIn: 'root' }); }
17097
17130
  }
17098
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserService, decorators: [{
17131
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserService, decorators: [{
17099
17132
  type: Injectable,
17100
17133
  args: [{
17101
17134
  providedIn: 'root'
@@ -17116,10 +17149,10 @@ class FinancialYearService {
17116
17149
  window.location.reload();
17117
17150
  }));
17118
17151
  }
17119
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialYearService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17120
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialYearService, providedIn: 'root' }); }
17152
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FinancialYearService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17153
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FinancialYearService, providedIn: 'root' }); }
17121
17154
  }
17122
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialYearService, decorators: [{
17155
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FinancialYearService, decorators: [{
17123
17156
  type: Injectable,
17124
17157
  args: [{
17125
17158
  providedIn: 'root'
@@ -17163,10 +17196,10 @@ class MfaDetailsService extends RestService$1 {
17163
17196
  return mfaDetails;
17164
17197
  }));
17165
17198
  }
17166
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MfaDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17167
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MfaDetailsService, providedIn: 'root' }); }
17199
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MfaDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17200
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MfaDetailsService, providedIn: 'root' }); }
17168
17201
  }
17169
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MfaDetailsService, decorators: [{
17202
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MfaDetailsService, decorators: [{
17170
17203
  type: Injectable,
17171
17204
  args: [{
17172
17205
  providedIn: 'root'
@@ -17203,10 +17236,10 @@ class HoldingTradeService extends RestService$1 {
17203
17236
  }
17204
17237
  });
17205
17238
  }
17206
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTradeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17207
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTradeService, providedIn: 'root' }); }
17239
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTradeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17240
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTradeService, providedIn: 'root' }); }
17208
17241
  }
17209
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTradeService, decorators: [{
17242
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTradeService, decorators: [{
17210
17243
  type: Injectable,
17211
17244
  args: [{
17212
17245
  providedIn: 'root'
@@ -17243,10 +17276,10 @@ class HoldingTypeService extends RestService$1 {
17243
17276
  }
17244
17277
  });
17245
17278
  }
17246
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTypeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17247
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTypeService, providedIn: 'root' }); }
17279
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTypeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17280
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTypeService, providedIn: 'root' }); }
17248
17281
  }
17249
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTypeService, decorators: [{
17282
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTypeService, decorators: [{
17250
17283
  type: Injectable,
17251
17284
  args: [{
17252
17285
  providedIn: 'root'
@@ -17265,10 +17298,10 @@ class HoldingSaleService extends RestService$1 {
17265
17298
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
17266
17299
  this.roles = [UserRolesEnum$1.HOLDING_TANK];
17267
17300
  }
17268
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17269
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingSaleService, providedIn: 'root' }); }
17301
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17302
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingSaleService, providedIn: 'root' }); }
17270
17303
  }
17271
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingSaleService, decorators: [{
17304
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingSaleService, decorators: [{
17272
17305
  type: Injectable,
17273
17306
  args: [{
17274
17307
  providedIn: 'root'
@@ -17310,10 +17343,10 @@ class HoldingTradeImportService extends RestService$1 {
17310
17343
  return throwError(error);
17311
17344
  }));
17312
17345
  }
17313
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTradeImportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17314
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTradeImportService, providedIn: 'root' }); }
17346
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTradeImportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17347
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTradeImportService, providedIn: 'root' }); }
17315
17348
  }
17316
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTradeImportService, decorators: [{
17349
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTradeImportService, decorators: [{
17317
17350
  type: Injectable,
17318
17351
  args: [{
17319
17352
  providedIn: 'root'
@@ -17407,10 +17440,10 @@ class HoldingTypeExchangeService extends DataService {
17407
17440
  this.collectionClass = Collection;
17408
17441
  this.setCache(HoldingTypeExchanges);
17409
17442
  }
17410
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTypeExchangeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
17411
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTypeExchangeService, providedIn: 'root' }); }
17443
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTypeExchangeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
17444
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTypeExchangeService, providedIn: 'root' }); }
17412
17445
  }
17413
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTypeExchangeService, decorators: [{
17446
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTypeExchangeService, decorators: [{
17414
17447
  type: Injectable,
17415
17448
  args: [{
17416
17449
  providedIn: 'root'
@@ -17444,10 +17477,10 @@ class HomeOfficeClaimService extends RestService$1 {
17444
17477
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
17445
17478
  this.roles = [UserRolesEnum$1.WORK_TANK, UserRolesEnum$1.SOLE_TANK];
17446
17479
  }
17447
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HomeOfficeClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17448
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HomeOfficeClaimService, providedIn: 'root' }); }
17480
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HomeOfficeClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17481
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HomeOfficeClaimService, providedIn: 'root' }); }
17449
17482
  }
17450
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HomeOfficeClaimService, decorators: [{
17483
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HomeOfficeClaimService, decorators: [{
17451
17484
  type: Injectable,
17452
17485
  args: [{
17453
17486
  providedIn: 'root'
@@ -17475,10 +17508,10 @@ class HomeOfficeLogService extends RestService$1 {
17475
17508
  listenEvents() {
17476
17509
  this.listenCSE(HomeOfficeClaim, this.refreshCache, ['post']);
17477
17510
  }
17478
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HomeOfficeLogService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17479
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HomeOfficeLogService, providedIn: 'root' }); }
17511
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HomeOfficeLogService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17512
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HomeOfficeLogService, providedIn: 'root' }); }
17480
17513
  }
17481
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HomeOfficeLogService, decorators: [{
17514
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HomeOfficeLogService, decorators: [{
17482
17515
  type: Injectable,
17483
17516
  args: [{
17484
17517
  providedIn: 'root'
@@ -17518,10 +17551,10 @@ class AussieService extends RestService$1 {
17518
17551
  postAppointment() {
17519
17552
  return this.http.delete(`${this.environment.apiV2}/aussie/appointments`);
17520
17553
  }
17521
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AussieService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17522
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AussieService, providedIn: 'root' }); }
17554
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AussieService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17555
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AussieService, providedIn: 'root' }); }
17523
17556
  }
17524
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AussieService, decorators: [{
17557
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AussieService, decorators: [{
17525
17558
  type: Injectable,
17526
17559
  args: [{
17527
17560
  providedIn: 'root'
@@ -17545,10 +17578,10 @@ class SharesightDetailsService extends RestService$1 {
17545
17578
  reconnect(sharesightDetails) {
17546
17579
  return this.put(sharesightDetails, `${this.apiUrl}/${sharesightDetails.id}/reconnect`);
17547
17580
  }
17548
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SharesightDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17549
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SharesightDetailsService, providedIn: 'root' }); }
17581
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SharesightDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17582
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SharesightDetailsService, providedIn: 'root' }); }
17550
17583
  }
17551
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SharesightDetailsService, decorators: [{
17584
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SharesightDetailsService, decorators: [{
17552
17585
  type: Injectable,
17553
17586
  args: [{
17554
17587
  providedIn: 'root'
@@ -17566,10 +17599,10 @@ class SharesightPortfolioService extends RestService$1 {
17566
17599
  getExternal() {
17567
17600
  return this.fetch(`${this.apiUrl}/external`, false);
17568
17601
  }
17569
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SharesightPortfolioService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17570
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SharesightPortfolioService, providedIn: 'root' }); }
17602
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SharesightPortfolioService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17603
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SharesightPortfolioService, providedIn: 'root' }); }
17571
17604
  }
17572
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SharesightPortfolioService, decorators: [{
17605
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SharesightPortfolioService, decorators: [{
17573
17606
  type: Injectable,
17574
17607
  args: [{
17575
17608
  providedIn: 'root'
@@ -17646,10 +17679,10 @@ class IncomeSourceTypeService extends DataService {
17646
17679
  this.collectionClass = Collection;
17647
17680
  this.setCache(IncomeSourceTypes);
17648
17681
  }
17649
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceTypeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
17650
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceTypeService, providedIn: 'root' }); }
17682
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceTypeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
17683
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceTypeService, providedIn: 'root' }); }
17651
17684
  }
17652
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceTypeService, decorators: [{
17685
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceTypeService, decorators: [{
17653
17686
  type: Injectable,
17654
17687
  args: [{
17655
17688
  providedIn: 'root'
@@ -17663,10 +17696,10 @@ class ChartAccountsValueService extends DataService {
17663
17696
  this.collectionClass = ChartAccountsValueCollection;
17664
17697
  this.setCache(ChartAccountsValues);
17665
17698
  }
17666
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsValueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
17667
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsValueService, providedIn: 'root' }); }
17699
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsValueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
17700
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsValueService, providedIn: 'root' }); }
17668
17701
  }
17669
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsValueService, decorators: [{
17702
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsValueService, decorators: [{
17670
17703
  type: Injectable,
17671
17704
  args: [{
17672
17705
  providedIn: 'root'
@@ -19639,10 +19672,10 @@ class TaxReturnItemService extends DataService {
19639
19672
  this.collectionClass = Collection;
19640
19673
  this.setCache(TaxReturnItems);
19641
19674
  }
19642
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReturnItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
19643
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReturnItemService, providedIn: 'root' }); }
19675
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReturnItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
19676
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReturnItemService, providedIn: 'root' }); }
19644
19677
  }
19645
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReturnItemService, decorators: [{
19678
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReturnItemService, decorators: [{
19646
19679
  type: Injectable,
19647
19680
  args: [{
19648
19681
  providedIn: 'root'
@@ -19657,10 +19690,10 @@ class SetupItemService extends RestService$1 {
19657
19690
  this.collectionClass = AccountSetupItemCollection;
19658
19691
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
19659
19692
  }
19660
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SetupItemService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19661
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SetupItemService, providedIn: 'root' }); }
19693
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SetupItemService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19694
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SetupItemService, providedIn: 'root' }); }
19662
19695
  }
19663
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SetupItemService, decorators: [{
19696
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SetupItemService, decorators: [{
19664
19697
  type: Injectable,
19665
19698
  args: [{
19666
19699
  providedIn: 'root'
@@ -19843,10 +19876,10 @@ class AccountSetupService {
19843
19876
  getSharesightDetails(importEnabled) {
19844
19877
  return this.sharesightDetailsService.getArray().pipe(map(details => details.filter(detail => importEnabled ? detail.importEnabled : detail.exportEnabled)));
19845
19878
  }
19846
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AccountSetupService, deps: [{ token: SetupItemService }, { token: PropertyService }, { token: IncomeSourceService }, { token: BankConnectionService }, { token: BankAccountService }, { token: BankTransactionService }, { token: LoanService }, { token: AllocationRuleService }, { token: TransactionAllocationService }, { token: VehicleClaimService }, { token: HomeOfficeClaimService }, { token: TransactionService }, { token: DepreciationService }, { token: SoleBusinessService }, { token: HoldingTradeService }, { token: UserService }, { token: ClientMovementService }, { token: ClientInviteService }, { token: EmployeeService }, { token: EmployeeInviteService }, { token: FirmService }, { token: SharesightDetailsService }, { token: PropertyShareService }], target: i0.ɵɵFactoryTarget.Injectable }); }
19847
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AccountSetupService, providedIn: 'root' }); }
19879
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AccountSetupService, deps: [{ token: SetupItemService }, { token: PropertyService }, { token: IncomeSourceService }, { token: BankConnectionService }, { token: BankAccountService }, { token: BankTransactionService }, { token: LoanService }, { token: AllocationRuleService }, { token: TransactionAllocationService }, { token: VehicleClaimService }, { token: HomeOfficeClaimService }, { token: TransactionService }, { token: DepreciationService }, { token: SoleBusinessService }, { token: HoldingTradeService }, { token: UserService }, { token: ClientMovementService }, { token: ClientInviteService }, { token: EmployeeService }, { token: EmployeeInviteService }, { token: FirmService }, { token: SharesightDetailsService }, { token: PropertyShareService }], target: i0.ɵɵFactoryTarget.Injectable }); }
19880
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AccountSetupService, providedIn: 'root' }); }
19848
19881
  }
19849
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AccountSetupService, decorators: [{
19882
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AccountSetupService, decorators: [{
19850
19883
  type: Injectable,
19851
19884
  args: [{
19852
19885
  providedIn: 'root'
@@ -19861,10 +19894,10 @@ class AdblockDetectorService {
19861
19894
  constructor() {
19862
19895
  checkAdBlock().then((isDetected) => this.isDetected = isDetected);
19863
19896
  }
19864
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AdblockDetectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
19865
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AdblockDetectorService, providedIn: 'root' }); }
19897
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AdblockDetectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
19898
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AdblockDetectorService, providedIn: 'root' }); }
19866
19899
  }
19867
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AdblockDetectorService, decorators: [{
19900
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AdblockDetectorService, decorators: [{
19868
19901
  type: Injectable,
19869
19902
  args: [{
19870
19903
  providedIn: 'root'
@@ -19916,10 +19949,10 @@ class MixpanelService {
19916
19949
  }
19917
19950
  mixpanel['track_pageview']();
19918
19951
  }
19919
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MixpanelService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19920
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MixpanelService, providedIn: 'root' }); }
19952
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MixpanelService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19953
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MixpanelService, providedIn: 'root' }); }
19921
19954
  }
19922
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MixpanelService, decorators: [{
19955
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MixpanelService, decorators: [{
19923
19956
  type: Injectable,
19924
19957
  args: [{
19925
19958
  providedIn: 'root'
@@ -19986,10 +20019,10 @@ class JwtService extends JwtHelperService {
19986
20019
  isMe(userId) {
19987
20020
  return this.decode().id === userId;
19988
20021
  }
19989
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: JwtService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19990
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: JwtService, providedIn: 'root' }); }
20022
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: JwtService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
20023
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: JwtService, providedIn: 'root' }); }
19991
20024
  }
19992
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: JwtService, decorators: [{
20025
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: JwtService, decorators: [{
19993
20026
  type: Injectable,
19994
20027
  args: [{
19995
20028
  providedIn: 'root'
@@ -20030,10 +20063,10 @@ class AuthService {
20030
20063
  this.jwtService.destroyTokens();
20031
20064
  location.replace(url);
20032
20065
  }
20033
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AuthService, deps: [{ token: i1.HttpClient }, { token: JwtService }, { token: MixpanelService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
20034
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AuthService, providedIn: 'root' }); }
20066
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AuthService, deps: [{ token: i1.HttpClient }, { token: JwtService }, { token: MixpanelService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
20067
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AuthService, providedIn: 'root' }); }
20035
20068
  }
20036
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AuthService, decorators: [{
20069
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AuthService, decorators: [{
20037
20070
  type: Injectable,
20038
20071
  args: [{
20039
20072
  providedIn: 'root'
@@ -20170,10 +20203,10 @@ class JwtInterceptor {
20170
20203
  // });
20171
20204
  });
20172
20205
  }
20173
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: JwtInterceptor, deps: [{ token: JwtService }, { token: AuthService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
20174
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: JwtInterceptor }); }
20206
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: JwtInterceptor, deps: [{ token: JwtService }, { token: AuthService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
20207
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: JwtInterceptor }); }
20175
20208
  }
20176
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: JwtInterceptor, decorators: [{
20209
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: JwtInterceptor, decorators: [{
20177
20210
  type: Injectable
20178
20211
  }], ctorParameters: () => [{ type: JwtService }, { type: AuthService }, { type: undefined, decorators: [{
20179
20212
  type: Inject,
@@ -20181,9 +20214,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
20181
20214
  }] }] });
20182
20215
 
20183
20216
  let InterceptorsModule$1 = class InterceptorsModule {
20184
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
20185
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule }); }
20186
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule, providers: [
20217
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
20218
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule }); }
20219
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule, providers: [
20187
20220
  {
20188
20221
  provide: HTTP_INTERCEPTORS,
20189
20222
  useClass: JwtInterceptor,
@@ -20191,7 +20224,7 @@ let InterceptorsModule$1 = class InterceptorsModule {
20191
20224
  }
20192
20225
  ] }); }
20193
20226
  };
20194
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule$1, decorators: [{
20227
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule$1, decorators: [{
20195
20228
  type: NgModule,
20196
20229
  args: [{
20197
20230
  providers: [
@@ -20221,13 +20254,13 @@ class CommonModule {
20221
20254
  ]
20222
20255
  };
20223
20256
  }
20224
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
20225
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
20257
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
20258
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.6", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
20226
20259
  InterceptorsModule$1] }); }
20227
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
20260
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
20228
20261
  InterceptorsModule$1] }); }
20229
20262
  }
20230
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CommonModule, decorators: [{
20263
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CommonModule, decorators: [{
20231
20264
  type: NgModule,
20232
20265
  args: [{
20233
20266
  declarations: [],
@@ -20274,10 +20307,10 @@ class UserSwitcherService {
20274
20307
  window.location.replace('/client/dashboard');
20275
20308
  });
20276
20309
  }
20277
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserSwitcherService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
20278
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserSwitcherService, providedIn: 'root' }); }
20310
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserSwitcherService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
20311
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserSwitcherService, providedIn: 'root' }); }
20279
20312
  }
20280
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserSwitcherService, decorators: [{
20313
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserSwitcherService, decorators: [{
20281
20314
  type: Injectable,
20282
20315
  args: [{
20283
20316
  providedIn: 'root'
@@ -20321,10 +20354,10 @@ class AssetsService {
20321
20354
  delete(entityId, asset) {
20322
20355
  return this.http.delete(`${this.environment.apiV2}/${asset.entityType}/${entityId}/${asset.type}/${asset.id}`);
20323
20356
  }
20324
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AssetsService, deps: [{ token: i1.HttpClient }, { token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
20325
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AssetsService, providedIn: 'root' }); }
20357
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AssetsService, deps: [{ token: i1.HttpClient }, { token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
20358
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AssetsService, providedIn: 'root' }); }
20326
20359
  }
20327
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AssetsService, decorators: [{
20360
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AssetsService, decorators: [{
20328
20361
  type: Injectable,
20329
20362
  args: [{
20330
20363
  providedIn: 'root'
@@ -20352,10 +20385,10 @@ class BankAccountCalculationService {
20352
20385
  getNetPosition(bankAccounts, bankTransactions, allocations) {
20353
20386
  return bankAccounts.currentBalance - this.getTaxTankBalance(bankAccounts.getLoanAccounts(), bankTransactions, allocations);
20354
20387
  }
20355
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankAccountCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
20356
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' }); }
20388
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankAccountCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
20389
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' }); }
20357
20390
  }
20358
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankAccountCalculationService, decorators: [{
20391
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankAccountCalculationService, decorators: [{
20359
20392
  type: Injectable,
20360
20393
  args: [{
20361
20394
  providedIn: 'root'
@@ -20382,10 +20415,10 @@ class ExportFormatterService {
20382
20415
  }
20383
20416
  }));
20384
20417
  }
20385
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ExportFormatterService, deps: [{ token: i1$1.CurrencyPipe }, { token: i1$1.PercentPipe }, { token: i1$1.DatePipe }], target: i0.ɵɵFactoryTarget.Injectable }); }
20386
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ExportFormatterService, providedIn: 'root' }); }
20418
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ExportFormatterService, deps: [{ token: i1$1.CurrencyPipe }, { token: i1$1.PercentPipe }, { token: i1$1.DatePipe }], target: i0.ɵɵFactoryTarget.Injectable }); }
20419
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ExportFormatterService, providedIn: 'root' }); }
20387
20420
  }
20388
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ExportFormatterService, decorators: [{
20421
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ExportFormatterService, decorators: [{
20389
20422
  type: Injectable,
20390
20423
  args: [{
20391
20424
  providedIn: 'root'
@@ -20405,10 +20438,10 @@ class HeaderTitleService {
20405
20438
  return route;
20406
20439
  }), filter((route) => route.outlet === 'primary'), mergeMap((route) => route.data));
20407
20440
  }
20408
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HeaderTitleService, deps: [{ token: i4.Router }, { token: i4.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Injectable }); }
20409
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HeaderTitleService, providedIn: 'root' }); }
20441
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HeaderTitleService, deps: [{ token: i4.Router }, { token: i4.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Injectable }); }
20442
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HeaderTitleService, providedIn: 'root' }); }
20410
20443
  }
20411
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HeaderTitleService, decorators: [{
20444
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HeaderTitleService, decorators: [{
20412
20445
  type: Injectable,
20413
20446
  args: [{
20414
20447
  providedIn: 'root'
@@ -20441,10 +20474,10 @@ class IntercomService {
20441
20474
  const connectionCredentials = this.initUser(user);
20442
20475
  window.Intercom('boot', connectionCredentials);
20443
20476
  }
20444
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
20445
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IntercomService, providedIn: 'root' }); }
20477
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
20478
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IntercomService, providedIn: 'root' }); }
20446
20479
  }
20447
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IntercomService, decorators: [{
20480
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IntercomService, decorators: [{
20448
20481
  type: Injectable,
20449
20482
  args: [{
20450
20483
  providedIn: 'root'
@@ -20521,20 +20554,20 @@ class PdfFromDomElementService {
20521
20554
  if (!document.getElementById('pdf-export-style')) {
20522
20555
  const style = document.createElement('style');
20523
20556
  style.id = 'pdf-export-style';
20524
- style.textContent = `
20525
- .pdf-export input.mat-mdc-input-element {
20526
- height: 30px !important;
20527
- margin-top: 20px;
20528
- padding: 0 15px !important;
20529
- }
20557
+ style.textContent = `
20558
+ .pdf-export input.mat-mdc-input-element {
20559
+ height: 30px !important;
20560
+ margin-top: 20px;
20561
+ padding: 0 15px !important;
20562
+ }
20530
20563
  `;
20531
20564
  document.head.appendChild(style);
20532
20565
  }
20533
20566
  }
20534
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
20535
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' }); }
20567
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
20568
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' }); }
20536
20569
  }
20537
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromDomElementService, decorators: [{
20570
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromDomElementService, decorators: [{
20538
20571
  type: Injectable,
20539
20572
  args: [{
20540
20573
  providedIn: 'root'
@@ -20650,10 +20683,10 @@ class PdfFromTableService {
20650
20683
  startY: lastTableCoords + FILE_SETTINGS.titleCoords.top / 2,
20651
20684
  });
20652
20685
  }
20653
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
20654
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromTableService, providedIn: 'root' }); }
20686
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
20687
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromTableService, providedIn: 'root' }); }
20655
20688
  }
20656
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromTableService, decorators: [{
20689
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromTableService, decorators: [{
20657
20690
  type: Injectable,
20658
20691
  args: [{
20659
20692
  providedIn: 'root'
@@ -20695,10 +20728,10 @@ class PdfFromDataTableService extends PdfFromTableService {
20695
20728
  });
20696
20729
  return pdf;
20697
20730
  }
20698
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable }); }
20699
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' }); }
20731
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable }); }
20732
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' }); }
20700
20733
  }
20701
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromDataTableService, decorators: [{
20734
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromDataTableService, decorators: [{
20702
20735
  type: Injectable,
20703
20736
  args: [{
20704
20737
  providedIn: 'root'
@@ -20747,10 +20780,10 @@ class PdfFromHtmlTableService extends PdfFromTableService {
20747
20780
  Array.from(caption.children).map((node) => node.textContent).join('\n') :
20748
20781
  caption.innerText;
20749
20782
  }
20750
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
20751
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' }); }
20783
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
20784
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' }); }
20752
20785
  }
20753
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
20786
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
20754
20787
  type: Injectable,
20755
20788
  args: [{
20756
20789
  providedIn: 'root'
@@ -20774,10 +20807,10 @@ class PreloaderService {
20774
20807
  activePreloaders = activePreloaders.filter((preloader) => preloader !== endpoint);
20775
20808
  this.activePreloaders.next(activePreloaders);
20776
20809
  }
20777
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
20778
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PreloaderService, providedIn: 'root' }); }
20810
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
20811
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PreloaderService, providedIn: 'root' }); }
20779
20812
  }
20780
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PreloaderService, decorators: [{
20813
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PreloaderService, decorators: [{
20781
20814
  type: Injectable,
20782
20815
  args: [{
20783
20816
  providedIn: 'root'
@@ -20815,10 +20848,10 @@ class CorelogicService {
20815
20848
  return throwError(() => error);
20816
20849
  }));
20817
20850
  }
20818
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CorelogicService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
20819
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CorelogicService, providedIn: 'root' }); }
20851
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CorelogicService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
20852
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CorelogicService, providedIn: 'root' }); }
20820
20853
  }
20821
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CorelogicService, decorators: [{
20854
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CorelogicService, decorators: [{
20822
20855
  type: Injectable,
20823
20856
  args: [{
20824
20857
  providedIn: 'root'
@@ -20847,10 +20880,10 @@ class EquityPositionChartService {
20847
20880
  }))
20848
20881
  }))));
20849
20882
  }
20850
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EquityPositionChartService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
20851
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' }); }
20883
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EquityPositionChartService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
20884
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' }); }
20852
20885
  }
20853
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EquityPositionChartService, decorators: [{
20886
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EquityPositionChartService, decorators: [{
20854
20887
  type: Injectable,
20855
20888
  args: [{
20856
20889
  providedIn: 'root'
@@ -21021,10 +21054,10 @@ class PropertyCalculationService {
21021
21054
  return new Badge('Monitoring performance');
21022
21055
  }
21023
21056
  }
21024
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
21025
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' }); }
21057
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
21058
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' }); }
21026
21059
  }
21027
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCalculationService, decorators: [{
21060
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCalculationService, decorators: [{
21028
21061
  type: Injectable,
21029
21062
  args: [{
21030
21063
  providedIn: 'root'
@@ -21082,10 +21115,10 @@ class PropertyTransactionReportService {
21082
21115
  getDepreciations() {
21083
21116
  return this.depreciationService.get().pipe(map((depreciations) => depreciations.getByChartAccountsCategories(CHART_ACCOUNTS_CATEGORIES.property)));
21084
21117
  }
21085
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyTransactionReportService, deps: [{ token: PropertyService }, { token: TransactionService }, { token: DepreciationService }, { token: ChartAccountsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
21086
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' }); }
21118
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyTransactionReportService, deps: [{ token: PropertyService }, { token: TransactionService }, { token: DepreciationService }, { token: ChartAccountsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
21119
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' }); }
21087
21120
  }
21088
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
21121
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
21089
21122
  type: Injectable,
21090
21123
  args: [{
21091
21124
  providedIn: 'root'
@@ -21105,10 +21138,10 @@ class CurrentFirmBranchService {
21105
21138
  set(firmBranches) {
21106
21139
  this.firmBranchIds$.next(firmBranches.map(branch => branch.id));
21107
21140
  }
21108
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CurrentFirmBranchService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
21109
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CurrentFirmBranchService, providedIn: 'root' }); }
21141
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CurrentFirmBranchService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
21142
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CurrentFirmBranchService, providedIn: 'root' }); }
21110
21143
  }
21111
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CurrentFirmBranchService, decorators: [{
21144
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CurrentFirmBranchService, decorators: [{
21112
21145
  type: Injectable,
21113
21146
  args: [{
21114
21147
  providedIn: 'root'
@@ -21206,10 +21239,10 @@ class XlsxService {
21206
21239
  });
21207
21240
  FileSaver.saveAs(data, `${fileName}.xlsx`);
21208
21241
  }
21209
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
21210
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: XlsxService, providedIn: 'root' }); }
21242
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
21243
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: XlsxService, providedIn: 'root' }); }
21211
21244
  }
21212
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: XlsxService, decorators: [{
21245
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: XlsxService, decorators: [{
21213
21246
  type: Injectable,
21214
21247
  args: [{
21215
21248
  providedIn: 'root'
@@ -21243,10 +21276,10 @@ class CorelogicInterceptor {
21243
21276
  }
21244
21277
  });
21245
21278
  }
21246
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CorelogicInterceptor, deps: [{ token: CorelogicService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
21247
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CorelogicInterceptor }); }
21279
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CorelogicInterceptor, deps: [{ token: CorelogicService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
21280
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CorelogicInterceptor }); }
21248
21281
  }
21249
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CorelogicInterceptor, decorators: [{
21282
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CorelogicInterceptor, decorators: [{
21250
21283
  type: Injectable
21251
21284
  }], ctorParameters: () => [{ type: CorelogicService }, { type: undefined, decorators: [{
21252
21285
  type: Inject,
@@ -21282,10 +21315,10 @@ class FinancialYearInterceptor {
21282
21315
  }
21283
21316
  return next.handle(clonedReq);
21284
21317
  }
21285
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
21286
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialYearInterceptor }); }
21318
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
21319
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FinancialYearInterceptor }); }
21287
21320
  }
21288
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
21321
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
21289
21322
  type: Injectable
21290
21323
  }], ctorParameters: () => [{ type: undefined, decorators: [{
21291
21324
  type: Inject,
@@ -21319,10 +21352,10 @@ class UserSwitcherInterceptor {
21319
21352
  intercept(request, next) {
21320
21353
  return next.handle(this.switch(request, this.userSwitcherService.get()));
21321
21354
  }
21322
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserSwitcherInterceptor, deps: [{ token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
21323
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserSwitcherInterceptor }); }
21355
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserSwitcherInterceptor, deps: [{ token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
21356
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserSwitcherInterceptor }); }
21324
21357
  }
21325
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
21358
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
21326
21359
  type: Injectable
21327
21360
  }], ctorParameters: () => [{ type: UserSwitcherService }, { type: undefined, decorators: [{
21328
21361
  type: Inject,
@@ -21383,6 +21416,10 @@ const ENDPOINTS = {
21383
21416
  BUDGETS_POST: new Endpoint('POST', '\\/budgets'),
21384
21417
  BUDGETS_PUT: new Endpoint('PUT', '\\/budgets\\/\\d+'),
21385
21418
  BUDGETS_DELETE: new Endpoint('DELETE', '\\/budgets\\/\\d+'),
21419
+ BUDGET_RULES_GET: new Endpoint('GET', '\\/budget-rules'),
21420
+ BUDGET_RULES_POST: new Endpoint('POST', '\\/budget-rules'),
21421
+ BUDGET_RULES_PUT: new Endpoint('PUT', '\\/budget-rules\\/\\d+'),
21422
+ BUDGET_RULES_DELETE: new Endpoint('DELETE', '\\/budget-rules\\/\\d+'),
21386
21423
  BORROWING_EXPENSES_GET: new Endpoint('GET', '\\/borrowing-expenses'),
21387
21424
  CHARTS_INCOME_GET: new Endpoint('GET', '\\/charts\\/\\incomes'),
21388
21425
  CHARTS_EXPENSES_GET: new Endpoint('GET', '\\/charts\\/\\expenses'),
@@ -21669,10 +21706,10 @@ class PreloaderInterceptor {
21669
21706
  findEndpoint(requestPath) {
21670
21707
  return Object.values(ENDPOINTS).find((endpoint) => endpoint.test(requestPath));
21671
21708
  }
21672
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable }); }
21673
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PreloaderInterceptor }); }
21709
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable }); }
21710
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PreloaderInterceptor }); }
21674
21711
  }
21675
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PreloaderInterceptor, decorators: [{
21712
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PreloaderInterceptor, decorators: [{
21676
21713
  type: Injectable
21677
21714
  }], ctorParameters: () => [{ type: PreloaderService }] });
21678
21715
 
@@ -21697,10 +21734,10 @@ class BasiqTokenInterceptor {
21697
21734
  }
21698
21735
  });
21699
21736
  }
21700
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqTokenInterceptor, deps: [{ token: BasiqTokenService }], target: i0.ɵɵFactoryTarget.Injectable }); }
21701
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqTokenInterceptor }); }
21737
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqTokenInterceptor, deps: [{ token: BasiqTokenService }], target: i0.ɵɵFactoryTarget.Injectable }); }
21738
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqTokenInterceptor }); }
21702
21739
  }
21703
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqTokenInterceptor, decorators: [{
21740
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqTokenInterceptor, decorators: [{
21704
21741
  type: Injectable
21705
21742
  }], ctorParameters: () => [{ type: BasiqTokenService }] });
21706
21743
 
@@ -21723,10 +21760,10 @@ class BasiqClientIdInterceptor {
21723
21760
  url: request.url.replace('null', basiqClientId)
21724
21761
  });
21725
21762
  }
21726
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqClientIdInterceptor, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
21727
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqClientIdInterceptor }); }
21763
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqClientIdInterceptor, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
21764
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqClientIdInterceptor }); }
21728
21765
  }
21729
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqClientIdInterceptor, decorators: [{
21766
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqClientIdInterceptor, decorators: [{
21730
21767
  type: Injectable
21731
21768
  }], ctorParameters: () => [{ type: UserService }] });
21732
21769
 
@@ -21761,10 +21798,10 @@ class RewardfulInterceptor {
21761
21798
  && (window['Rewardful'].referral || window['Rewardful'].coupon?.id)
21762
21799
  && registrationUrls.some(registrationUrl => request.url.includes(registrationUrl));
21763
21800
  }
21764
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RewardfulInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
21765
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RewardfulInterceptor }); }
21801
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RewardfulInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
21802
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RewardfulInterceptor }); }
21766
21803
  }
21767
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RewardfulInterceptor, decorators: [{
21804
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RewardfulInterceptor, decorators: [{
21768
21805
  type: Injectable
21769
21806
  }], ctorParameters: () => [{ type: undefined, decorators: [{
21770
21807
  type: Inject,
@@ -21793,10 +21830,10 @@ class AussieInterceptor {
21793
21830
  }
21794
21831
  });
21795
21832
  }
21796
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AussieInterceptor, deps: [{ token: AussieService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
21797
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AussieInterceptor }); }
21833
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AussieInterceptor, deps: [{ token: AussieService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
21834
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AussieInterceptor }); }
21798
21835
  }
21799
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AussieInterceptor, decorators: [{
21836
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AussieInterceptor, decorators: [{
21800
21837
  type: Injectable
21801
21838
  }], ctorParameters: () => [{ type: AussieService }, { type: undefined, decorators: [{
21802
21839
  type: Inject,
@@ -21804,13 +21841,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
21804
21841
  }] }] });
21805
21842
 
21806
21843
  const ADBLOCK_ERROR_HTML = new InjectionToken('ADBLOCK_ERROR_HTML');
21807
- const ADBLOCK_ERROR_HTML_VALUE = `
21808
- <div class="text-center">
21809
- <strong>Action needed - Your adblocker is blocking CoreLogic</strong>
21810
- To add a property in TaxTank we need to fetch data from CoreLogic — but your ad blocker is getting in the way.
21811
- Please disable your adblocker or whitelist TaxTank to continue.
21812
- <a class="btn" target="_blank" href="https://support.taxtank.com.au/en/articles/10505609-how-to-ensure-seamless-functionality-while-using-ad-blockers-with-taxtank">Learn more</a>
21813
- </div>
21844
+ const ADBLOCK_ERROR_HTML_VALUE = `
21845
+ <div class="text-center">
21846
+ <strong>Action needed - Your adblocker is blocking CoreLogic</strong>
21847
+ To add a property in TaxTank we need to fetch data from CoreLogic — but your ad blocker is getting in the way.
21848
+ Please disable your adblocker or whitelist TaxTank to continue.
21849
+ <a class="btn" target="_blank" href="https://support.taxtank.com.au/en/articles/10505609-how-to-ensure-seamless-functionality-while-using-ad-blockers-with-taxtank">Learn more</a>
21850
+ </div>
21814
21851
  `;
21815
21852
 
21816
21853
  /**
@@ -21835,10 +21872,10 @@ class AdBlockErrorInterceptor {
21835
21872
  }
21836
21873
  return next.handle(request);
21837
21874
  }
21838
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AdBlockErrorInterceptor, deps: [{ token: 'environment' }, { token: AdblockDetectorService }, { token: ToastService }, { token: ADBLOCK_ERROR_HTML }], target: i0.ɵɵFactoryTarget.Injectable }); }
21839
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AdBlockErrorInterceptor }); }
21875
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AdBlockErrorInterceptor, deps: [{ token: 'environment' }, { token: AdblockDetectorService }, { token: ToastService }, { token: ADBLOCK_ERROR_HTML }], target: i0.ɵɵFactoryTarget.Injectable }); }
21876
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AdBlockErrorInterceptor }); }
21840
21877
  }
21841
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AdBlockErrorInterceptor, decorators: [{
21878
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AdBlockErrorInterceptor, decorators: [{
21842
21879
  type: Injectable
21843
21880
  }], ctorParameters: () => [{ type: undefined, decorators: [{
21844
21881
  type: Inject,
@@ -21849,9 +21886,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
21849
21886
  }] }] });
21850
21887
 
21851
21888
  class InterceptorsModule {
21852
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
21853
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule }); }
21854
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule, providers: [
21889
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
21890
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule }); }
21891
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule, providers: [
21855
21892
  {
21856
21893
  provide: HTTP_INTERCEPTORS,
21857
21894
  useClass: CorelogicInterceptor,
@@ -21904,7 +21941,7 @@ class InterceptorsModule {
21904
21941
  }
21905
21942
  ] }); }
21906
21943
  }
21907
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule, decorators: [{
21944
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule, decorators: [{
21908
21945
  type: NgModule,
21909
21946
  args: [{
21910
21947
  providers: [
@@ -21966,13 +22003,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
21966
22003
  * https://angular.io/guide/creating-libraries
21967
22004
  */
21968
22005
  class CoreModule {
21969
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
21970
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
22006
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
22007
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.6", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
21971
22008
  InterceptorsModule] }); }
21972
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
22009
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
21973
22010
  InterceptorsModule] }); }
21974
22011
  }
21975
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CoreModule, decorators: [{
22012
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CoreModule, decorators: [{
21976
22013
  type: NgModule,
21977
22014
  args: [{
21978
22015
  declarations: [],
@@ -21992,10 +22029,10 @@ class AppCurrencyPipe extends CurrencyPipe {
21992
22029
  digitsInfo = digitsInfo ?? '1.0-' + (value.toString().match(/[1-9]/)?.index || 2);
21993
22030
  return super.transform(value, currencyCode, display, digitsInfo, locale);
21994
22031
  }
21995
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AppCurrencyPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
21996
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: AppCurrencyPipe, isStandalone: true, name: "appCurrency" }); }
22032
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AppCurrencyPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
22033
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.6", ngImport: i0, type: AppCurrencyPipe, isStandalone: true, name: "appCurrency" }); }
21997
22034
  }
21998
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AppCurrencyPipe, decorators: [{
22035
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AppCurrencyPipe, decorators: [{
21999
22036
  type: Pipe,
22000
22037
  args: [{
22001
22038
  name: 'appCurrency',
@@ -22010,10 +22047,10 @@ class SafeUrlPipe {
22010
22047
  transform(url) {
22011
22048
  return this.sanitizer.bypassSecurityTrustResourceUrl(url);
22012
22049
  }
22013
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SafeUrlPipe, deps: [{ token: i1$2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
22014
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
22050
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SafeUrlPipe, deps: [{ token: i1$2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
22051
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.6", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
22015
22052
  }
22016
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SafeUrlPipe, decorators: [{
22053
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SafeUrlPipe, decorators: [{
22017
22054
  type: Pipe,
22018
22055
  args: [{
22019
22056
  name: 'safeUrl',
@@ -22028,10 +22065,10 @@ class AppPercentPipe {
22028
22065
  transform(value, total, floor) {
22029
22066
  return this.percentagePipe.transform(value, total, floor) + '%';
22030
22067
  }
22031
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AppPercentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
22032
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: AppPercentPipe, isStandalone: true, name: "percentage" }); }
22068
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AppPercentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
22069
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.6", ngImport: i0, type: AppPercentPipe, isStandalone: true, name: "percentage" }); }
22033
22070
  }
22034
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AppPercentPipe, decorators: [{
22071
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AppPercentPipe, decorators: [{
22035
22072
  type: Pipe,
22036
22073
  args: [{
22037
22074
  name: 'percentage',
@@ -22384,10 +22421,10 @@ class BusinessResolver {
22384
22421
  resolve() {
22385
22422
  return this.soleDetailsService.getFirst();
22386
22423
  }
22387
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BusinessResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
22388
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BusinessResolver, providedIn: 'root' }); }
22424
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BusinessResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
22425
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BusinessResolver, providedIn: 'root' }); }
22389
22426
  }
22390
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BusinessResolver, decorators: [{
22427
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BusinessResolver, decorators: [{
22391
22428
  type: Injectable,
22392
22429
  args: [{ providedIn: 'root' }]
22393
22430
  }], ctorParameters: () => [{ type: SoleDetailsService }] });
@@ -22399,10 +22436,10 @@ class SoleDetailsResolver {
22399
22436
  resolve() {
22400
22437
  return this.soleDetails.getFirst();
22401
22438
  }
22402
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDetailsResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
22403
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDetailsResolver, providedIn: 'root' }); }
22439
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDetailsResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
22440
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDetailsResolver, providedIn: 'root' }); }
22404
22441
  }
22405
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDetailsResolver, decorators: [{
22442
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDetailsResolver, decorators: [{
22406
22443
  type: Injectable,
22407
22444
  args: [{ providedIn: 'root' }]
22408
22445
  }], ctorParameters: () => [{ type: SoleDetailsService }] });
@@ -22832,6 +22869,9 @@ class AddressForm extends AbstractForm {
22832
22869
  }
22833
22870
  }
22834
22871
 
22872
+ /**
22873
+ * @TODO TT-4522 remove after release
22874
+ */
22835
22875
  class BudgetForm extends AbstractForm {
22836
22876
  constructor(budget) {
22837
22877
  super({
@@ -22893,152 +22933,6 @@ class BudgetForm extends AbstractForm {
22893
22933
  }
22894
22934
  }
22895
22935
 
22896
- /**
22897
- * general validation rules
22898
- */
22899
- var FormValidationsEnum;
22900
- (function (FormValidationsEnum) {
22901
- FormValidationsEnum[FormValidationsEnum["INPUT_MAX_LENGTH"] = 60] = "INPUT_MAX_LENGTH";
22902
- FormValidationsEnum[FormValidationsEnum["TEXT_MAX_LENGTH"] = 300] = "TEXT_MAX_LENGTH";
22903
- FormValidationsEnum[FormValidationsEnum["FILE_MAX_SIZE"] = 4194304] = "FILE_MAX_SIZE";
22904
- // @TODO move to file uploader component
22905
- FormValidationsEnum["FILE_ACCEPTED_TYPES"] = "Accepted file type: .doc .jpg .png .pdf .tiff .bmp .excel .csv";
22906
- })(FormValidationsEnum || (FormValidationsEnum = {}));
22907
-
22908
- class DocumentFolderForm extends AbstractForm {
22909
- constructor(folder) {
22910
- super({
22911
- name: new FormControl(folder.name, [Validators.required, Validators.maxLength(FormValidationsEnum.INPUT_MAX_LENGTH)]),
22912
- parent: new FormControl(folder.parent),
22913
- }, folder);
22914
- }
22915
- }
22916
-
22917
- class DocumentForm extends AbstractForm {
22918
- constructor(document) {
22919
- super({
22920
- folder: new FormControl(document.folder, Validators.required),
22921
- file: new FormControl(document.file, Validators.required),
22922
- }, document);
22923
- }
22924
- }
22925
-
22926
- /**
22927
- * Form with loan details.
22928
- * Loan could be created from bank account (Bank Loan) or directly from loan page (Vehicle Loan)
22929
- */
22930
- class LoanForm extends AbstractForm {
22931
- static { this.mortgageLoanTypes = [LoanTypeEnum.MORTGAGE, LoanTypeEnum.HOME_EQUITY_LINE_OF_CREDIT, LoanTypeEnum.HOME_LOAN]; }
22932
- constructor(loan = plainToClass(Loan, {})) {
22933
- super({
22934
- type: new UntypedFormControl(loan.type, Validators.required),
22935
- amount: new UntypedFormControl(loan.amount, Validators.required),
22936
- interestRate: new UntypedFormControl(loan.interestRate, [Validators.required, Validators.min(0), Validators.max(100)]),
22937
- commencementDate: new UntypedFormControl(loan.commencementDate, Validators.required),
22938
- repaymentAmount: new UntypedFormControl(loan.repaymentAmount),
22939
- repaymentFrequency: new UntypedFormControl(loan.repaymentFrequency, Validators.required),
22940
- term: new UntypedFormControl(loan.term, Validators.required),
22941
- // interestType is predefined for vehicle loans
22942
- interestType: new UntypedFormControl({ value: loan.interestType, disabled: !loan.bankAccount }, Validators.required),
22943
- // availableRedraw is predefined for vehicle loans
22944
- availableRedraw: new UntypedFormControl({ value: loan.availableRedraw, disabled: !loan.bankAccount }, Validators.required),
22945
- // repaymentType is predefined for vehicle loans
22946
- repaymentType: new UntypedFormControl({ value: loan.repaymentType, disabled: !loan.bankAccount }, Validators.required),
22947
- }, loan);
22948
- this.loan = loan;
22949
- // Set data which always the same for vehicle loans
22950
- if (!loan.bankAccount) {
22951
- Object.assign(this.model, {
22952
- repaymentType: LoanRepaymentTypeEnum.PRINCIPAL_AND_INTEREST,
22953
- availableRedraw: 0,
22954
- interestType: LoanInterestTypeEnum.FIXED_RATE
22955
- });
22956
- }
22957
- this.updateTermValidation();
22958
- this.listenEvents();
22959
- }
22960
- listenEvents() {
22961
- // We need to set term automatically only for bank loans.
22962
- // For vehicle loans user should fill it manually with validation depended of frequency
22963
- if (this.loan.bankAccount) {
22964
- this.listenTypeChanges();
22965
- }
22966
- else {
22967
- this.listenRepaymentFrequencyChanges();
22968
- }
22969
- }
22970
- /**
22971
- * Set term automatically by loan type changes
22972
- */
22973
- listenTypeChanges() {
22974
- this.get('type').valueChanges.subscribe((type) => {
22975
- this.get('term').setValue(LoanForm.mortgageLoanTypes.includes(type) ? Loan.mortgageDefaultTerm : Loan.loanDefaultTerm);
22976
- });
22977
- }
22978
- /**
22979
- * term validation depends on selected repaymentFrequency
22980
- */
22981
- listenRepaymentFrequencyChanges() {
22982
- this.get('repaymentFrequency').valueChanges.subscribe(() => {
22983
- this.updateTermValidation();
22984
- });
22985
- }
22986
- /**
22987
- * For vehicle loans term has a maximum value depended of repayment frequency
22988
- */
22989
- updateTermValidation() {
22990
- // no need terms for bank loans
22991
- if (this.loan.bankAccount) {
22992
- return;
22993
- }
22994
- const currentRepaymentFrequency = this.get('repaymentFrequency').value;
22995
- // term validation depends on selected repayment frequency, so can not validate when frequency is empty
22996
- // repaymentType is required field, so we don't need to clear validation
22997
- if (!currentRepaymentFrequency) {
22998
- return;
22999
- }
23000
- const termControl = this.get('term');
23001
- const maxTermValue = LoanMaxNumberOfPaymentsEnum[LoanRepaymentFrequencyEnum[currentRepaymentFrequency]];
23002
- termControl.setValidators([Validators.max(maxTermValue)]);
23003
- termControl.updateValueAndValidity();
23004
- }
23005
- }
23006
-
23007
- class FinancialGoalForm extends AbstractForm {
23008
- constructor(goal = plainToClass(FinancialGoal, {})) {
23009
- super({
23010
- type: new FormControl(goal.type || FinancialGoalTypeEnum.DEBIT, Validators.required),
23011
- name: new FormControl(goal.name, Validators.required),
23012
- bankAccount: new FormControl(goal.bankAccount, Validators.required),
23013
- targetValue: new FormControl(goal.finalValue, Validators.required),
23014
- initialValue: new FormControl({ value: goal.initialValue, disabled: true }, Validators.required),
23015
- finalValue: new FormControl({ value: goal.finalValue, disabled: true }),
23016
- startDate: new FormControl({ value: goal.startDate, disabled: true }, Validators.required),
23017
- endDate: new FormControl(goal.endDate, Validators.required),
23018
- paymentFrequency: new FormControl(goal.paymentFrequency || FinancialGoalPaymentFrequencyEnum.MONTHLY, Validators.required),
23019
- paymentAmount: new FormControl(goal.paymentAmount, Validators.required),
23020
- file: new FormControl(goal.file),
23021
- description: new FormControl(goal.description),
23022
- }, goal);
23023
- this.includeDisabledFields = true;
23024
- this.listenEvents();
23025
- }
23026
- listenEvents() {
23027
- this.listenTypeChanges();
23028
- this.listenBankAccountsChanges();
23029
- }
23030
- listenTypeChanges() {
23031
- this.get('type').valueChanges.subscribe(() => {
23032
- this.get('bankAccount').setValue(null, { onlySelf: true });
23033
- });
23034
- }
23035
- listenBankAccountsChanges() {
23036
- this.get('bankAccount').valueChanges.subscribe((bankAccount) => {
23037
- this.get('initialValue').setValue(bankAccount?.currentBalance);
23038
- });
23039
- }
23040
- }
23041
-
23042
22936
  /**
23043
22937
  * Check if at least one form field is true, otherwise form is invalid.
23044
22938
  * Use with groups of boolean form controls (checkbox, toggle, etc.)
@@ -23241,10 +23135,10 @@ class UniqueEmailValidator {
23241
23135
  validate(control) {
23242
23136
  return this.userService.search(control.value).pipe(map(user => user ? { emailIsUsed: true } : null));
23243
23137
  }
23244
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UniqueEmailValidator, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
23245
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UniqueEmailValidator, providedIn: 'root' }); }
23138
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UniqueEmailValidator, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
23139
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UniqueEmailValidator, providedIn: 'root' }); }
23246
23140
  }
23247
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UniqueEmailValidator, decorators: [{
23141
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UniqueEmailValidator, decorators: [{
23248
23142
  type: Injectable,
23249
23143
  args: [{ providedIn: 'root' }]
23250
23144
  }], ctorParameters: () => [{ type: UserService }] });
@@ -23272,6 +23166,262 @@ function matchSumValidator(controlsFn, error) {
23272
23166
  };
23273
23167
  }
23274
23168
 
23169
+ class BudgetRuleForm extends AbstractForm {
23170
+ constructor(rule) {
23171
+ super({
23172
+ tankType: new FormControl(rule.chartAccounts?.tankType ?? TankTypeEnum.PERSONAL, [Validators.required]),
23173
+ chartAccounts: new FormControl({ value: rule.chartAccounts, disabled: !!rule.chartAccounts?.category }, [Validators.required, RxwebValidators.unique()]),
23174
+ amount: new FormControl(rule.amount, Validators.required),
23175
+ startDate: new FormControl(rule.startDate, Validators.required),
23176
+ endDate: new FormControl(rule.endDate),
23177
+ inCalendar: new FormControl(rule.inCalendar),
23178
+ frequency: new FormControl(rule.frequency ?? false),
23179
+ description: new FormControl(rule.description),
23180
+ bankAccount: new FormControl(rule.endDate, conditionalValidator(() => !!this.value.inCalendar, Validators.required)),
23181
+ property: new FormControl(rule.property, conditionalValidator(() => this.value.tankType === TankTypeEnum.PROPERTY, Validators.required)),
23182
+ business: new FormControl(rule.business, conditionalValidator(() => this.value.tankType === TankTypeEnum.SOLE, Validators.required)),
23183
+ incomeSource: new FormControl(rule.incomeSource, conditionalValidator(() => this.value.chartAccounts?.isWorkIncome(), Validators.required)),
23184
+ }, rule);
23185
+ }
23186
+ }
23187
+
23188
+ /**
23189
+ * general validation rules
23190
+ */
23191
+ var FormValidationsEnum;
23192
+ (function (FormValidationsEnum) {
23193
+ FormValidationsEnum[FormValidationsEnum["INPUT_MAX_LENGTH"] = 60] = "INPUT_MAX_LENGTH";
23194
+ FormValidationsEnum[FormValidationsEnum["TEXT_MAX_LENGTH"] = 300] = "TEXT_MAX_LENGTH";
23195
+ FormValidationsEnum[FormValidationsEnum["FILE_MAX_SIZE"] = 4194304] = "FILE_MAX_SIZE";
23196
+ // @TODO move to file uploader component
23197
+ FormValidationsEnum["FILE_ACCEPTED_TYPES"] = "Accepted file type: .doc .jpg .png .pdf .tiff .bmp .excel .csv";
23198
+ })(FormValidationsEnum || (FormValidationsEnum = {}));
23199
+
23200
+ class DocumentFolderForm extends AbstractForm {
23201
+ constructor(folder) {
23202
+ super({
23203
+ name: new FormControl(folder.name, [Validators.required, Validators.maxLength(FormValidationsEnum.INPUT_MAX_LENGTH)]),
23204
+ parent: new FormControl(folder.parent),
23205
+ }, folder);
23206
+ }
23207
+ }
23208
+
23209
+ class DocumentForm extends AbstractForm {
23210
+ constructor(document) {
23211
+ super({
23212
+ folder: new FormControl(document.folder, Validators.required),
23213
+ file: new FormControl(document.file, Validators.required),
23214
+ }, document);
23215
+ }
23216
+ }
23217
+
23218
+ /**
23219
+ * Form with loan details.
23220
+ * Loan could be created from bank account (Bank Loan) or directly from loan page (Vehicle Loan)
23221
+ */
23222
+ class LoanForm extends AbstractForm {
23223
+ static { this.mortgageLoanTypes = [LoanTypeEnum.MORTGAGE, LoanTypeEnum.HOME_EQUITY_LINE_OF_CREDIT, LoanTypeEnum.HOME_LOAN]; }
23224
+ constructor(loan = plainToClass(Loan, {})) {
23225
+ super({
23226
+ type: new UntypedFormControl(loan.type, Validators.required),
23227
+ amount: new UntypedFormControl(loan.amount, Validators.required),
23228
+ interestRate: new UntypedFormControl(loan.interestRate, [Validators.required, Validators.min(0), Validators.max(100)]),
23229
+ commencementDate: new UntypedFormControl(loan.commencementDate, Validators.required),
23230
+ repaymentAmount: new UntypedFormControl(loan.repaymentAmount),
23231
+ repaymentFrequency: new UntypedFormControl(loan.repaymentFrequency, Validators.required),
23232
+ term: new UntypedFormControl(loan.term, Validators.required),
23233
+ // interestType is predefined for vehicle loans
23234
+ interestType: new UntypedFormControl({ value: loan.interestType, disabled: !loan.bankAccount }, Validators.required),
23235
+ // availableRedraw is predefined for vehicle loans
23236
+ availableRedraw: new UntypedFormControl({ value: loan.availableRedraw, disabled: !loan.bankAccount }, Validators.required),
23237
+ // repaymentType is predefined for vehicle loans
23238
+ repaymentType: new UntypedFormControl({ value: loan.repaymentType, disabled: !loan.bankAccount }, Validators.required),
23239
+ }, loan);
23240
+ this.loan = loan;
23241
+ // Set data which always the same for vehicle loans
23242
+ if (!loan.bankAccount) {
23243
+ Object.assign(this.model, {
23244
+ repaymentType: LoanRepaymentTypeEnum.PRINCIPAL_AND_INTEREST,
23245
+ availableRedraw: 0,
23246
+ interestType: LoanInterestTypeEnum.FIXED_RATE
23247
+ });
23248
+ }
23249
+ this.updateTermValidation();
23250
+ this.listenEvents();
23251
+ }
23252
+ listenEvents() {
23253
+ // We need to set term automatically only for bank loans.
23254
+ // For vehicle loans user should fill it manually with validation depended of frequency
23255
+ if (this.loan.bankAccount) {
23256
+ this.listenTypeChanges();
23257
+ }
23258
+ else {
23259
+ this.listenRepaymentFrequencyChanges();
23260
+ }
23261
+ }
23262
+ /**
23263
+ * Set term automatically by loan type changes
23264
+ */
23265
+ listenTypeChanges() {
23266
+ this.get('type').valueChanges.subscribe((type) => {
23267
+ this.get('term').setValue(LoanForm.mortgageLoanTypes.includes(type) ? Loan.mortgageDefaultTerm : Loan.loanDefaultTerm);
23268
+ });
23269
+ }
23270
+ /**
23271
+ * term validation depends on selected repaymentFrequency
23272
+ */
23273
+ listenRepaymentFrequencyChanges() {
23274
+ this.get('repaymentFrequency').valueChanges.subscribe(() => {
23275
+ this.updateTermValidation();
23276
+ });
23277
+ }
23278
+ /**
23279
+ * For vehicle loans term has a maximum value depended of repayment frequency
23280
+ */
23281
+ updateTermValidation() {
23282
+ // no need terms for bank loans
23283
+ if (this.loan.bankAccount) {
23284
+ return;
23285
+ }
23286
+ const currentRepaymentFrequency = this.get('repaymentFrequency').value;
23287
+ // term validation depends on selected repayment frequency, so can not validate when frequency is empty
23288
+ // repaymentType is required field, so we don't need to clear validation
23289
+ if (!currentRepaymentFrequency) {
23290
+ return;
23291
+ }
23292
+ const termControl = this.get('term');
23293
+ const maxTermValue = LoanMaxNumberOfPaymentsEnum[AnnualFrequencyEnum[currentRepaymentFrequency]];
23294
+ termControl.setValidators([Validators.max(maxTermValue)]);
23295
+ termControl.updateValueAndValidity();
23296
+ }
23297
+ }
23298
+
23299
+ const END_DATE_VALIDATION_ERROR = 'Target date must be more than start date';
23300
+ class FinancialGoalForm extends AbstractForm {
23301
+ constructor(goal = plainToClass(FinancialGoal, {})) {
23302
+ super({
23303
+ type: new FormControl({ value: goal.type ?? FinancialGoalTypeEnum.DEBIT, disabled: !!goal.id }, Validators.required),
23304
+ name: new FormControl(goal.name, Validators.required),
23305
+ bankAccount: new FormControl({ value: goal.bankAccount, disabled: !!goal.id }, Validators.required),
23306
+ targetValue: new FormControl({ value: goal.targetValue, disabled: !!goal.id }, [Validators.required, Validators.min(goal.initialValue ?? 0)]),
23307
+ initialValue: new FormControl({ value: goal.initialValue, disabled: true }, Validators.required),
23308
+ finalValue: new FormControl({ value: goal.finalValue, disabled: true }),
23309
+ startDate: new FormControl({ value: goal.startDate, disabled: true }),
23310
+ endDate: new FormControl(goal.endDate, [Validators.required, minDateValidator(goal.startDate, END_DATE_VALIDATION_ERROR)]),
23311
+ paymentFrequency: new FormControl(goal.paymentFrequency, Validators.required),
23312
+ paymentAmount: new FormControl(goal.paymentAmount, Validators.required),
23313
+ file: new FormControl(goal.file),
23314
+ description: new FormControl(goal.description),
23315
+ }, goal);
23316
+ this.listenEvents();
23317
+ // Trigger manual value updates when editing an existing goal
23318
+ // (needed to re-emit payment valueChanges and keep endDate recalculated)
23319
+ if (goal.id) {
23320
+ this.get('paymentFrequency').updateValueAndValidity({ onlySelf: false, emitEvent: true });
23321
+ this.get('paymentAmount').updateValueAndValidity({ onlySelf: false, emitEvent: true });
23322
+ }
23323
+ }
23324
+ listenEvents() {
23325
+ this.listenTypeChanges();
23326
+ this.listenBankAccountChanges();
23327
+ this.listenPaymentChanges();
23328
+ this.listenInitialValueChanges();
23329
+ this.listenEndDateChanges();
23330
+ }
23331
+ listenTypeChanges() {
23332
+ this.get('type').valueChanges.subscribe(() => {
23333
+ this.get('bankAccount').setValue(null, { onlySelf: true });
23334
+ });
23335
+ }
23336
+ listenEndDateChanges() {
23337
+ this.get('endDate').valueChanges
23338
+ .pipe(debounceTime(300))
23339
+ .subscribe(() => {
23340
+ if (this.invalid) {
23341
+ return;
23342
+ }
23343
+ this.get('paymentAmount').setValue(this.calculatePaymentAmount(this.currentValue), { emitEvent: false });
23344
+ });
23345
+ }
23346
+ /**
23347
+ * Watch payment fields and auto-recalculate endDate when form is valid
23348
+ */
23349
+ listenPaymentChanges() {
23350
+ combineLatest({
23351
+ paymentAmount: this.get('paymentAmount').valueChanges,
23352
+ paymentFrequency: this.get('paymentFrequency').valueChanges
23353
+ }).pipe(debounceTime(300))
23354
+ .subscribe(() => {
23355
+ if (this.invalid) {
23356
+ return;
23357
+ }
23358
+ this.get('endDate').setValue(this.calculateEndDate(this.currentValue), { emitEvent: false });
23359
+ });
23360
+ }
23361
+ listenInitialValueChanges() {
23362
+ this.get('initialValue').valueChanges.subscribe(() => {
23363
+ this.get('targetValue').setValidators([Validators.required, Validators.min(this.get('initialValue').value)]);
23364
+ this.get('targetValue').updateValueAndValidity();
23365
+ });
23366
+ }
23367
+ /**
23368
+ * keeps updated initialValue when bankAccount updated. only for add form
23369
+ */
23370
+ listenBankAccountChanges() {
23371
+ this.get('bankAccount').valueChanges.subscribe((bankAccount) => {
23372
+ // @TODO: TT-5394 taxtankit/vik bankAccount?.currentBalance shouldn't be here
23373
+ this.get('initialValue').setValue(bankAccount?.currentBalance);
23374
+ });
23375
+ }
23376
+ /**
23377
+ * Returns total number of deposits needed to fully reach the goal at current paymentAmount.
23378
+ */
23379
+ calculatePaymentsByAmount(goal) {
23380
+ return Math.round(goal.target / goal.paymentAmount);
23381
+ }
23382
+ /**
23383
+ * Derives the final goal completion date by adding all payment periods to the start date.
23384
+ */
23385
+ calculateEndDate(goal) {
23386
+ const start = moment(goal.startDate);
23387
+ const paymentsCount = this.calculatePaymentsByAmount(goal);
23388
+ switch (goal.paymentFrequency) {
23389
+ case DailyFrequencyEnum.WEEKLY:
23390
+ return start.add(paymentsCount, 'weeks').toDate();
23391
+ case DailyFrequencyEnum.FORTNIGHTLY:
23392
+ return start.add(paymentsCount * 2, 'weeks').toDate();
23393
+ case DailyFrequencyEnum.MONTHLY:
23394
+ return start.add(paymentsCount, 'month').toDate();
23395
+ default:
23396
+ return new Date();
23397
+ }
23398
+ }
23399
+ /**
23400
+ * Computes the recurring payment amount required to hit the target by the chosen end date.
23401
+ */
23402
+ calculatePaymentAmount(goal) {
23403
+ const paymentsCount = this.calculatePaymentsByDate(goal);
23404
+ return paymentsCount ? goal.target / this.calculatePaymentsByDate(goal) : goal.target;
23405
+ }
23406
+ /**
23407
+ * Calculates the number of scheduled payments between start and end dates for the selected payment frequency.
23408
+ */
23409
+ calculatePaymentsByDate(goal) {
23410
+ const start = moment(goal.startDate);
23411
+ const end = moment(goal.endDate);
23412
+ switch (goal.paymentFrequency) {
23413
+ case DailyFrequencyEnum.WEEKLY:
23414
+ return end.diff(start, 'weeks');
23415
+ case DailyFrequencyEnum.FORTNIGHTLY:
23416
+ return Math.round(end.diff(start, 'weeks') / 2);
23417
+ case DailyFrequencyEnum.MONTHLY:
23418
+ return end.diff(start, 'months');
23419
+ default:
23420
+ return 0;
23421
+ }
23422
+ }
23423
+ }
23424
+
23275
23425
  class FirmForm extends AbstractForm {
23276
23426
  constructor(firm) {
23277
23427
  super({
@@ -23323,10 +23473,10 @@ class ClientMovementForm extends AbstractForm {
23323
23473
  firmBranch: new FormControl(clientMovement.firmBranch, [Validators.required]),
23324
23474
  }, clientMovement);
23325
23475
  }
23326
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientMovementForm, deps: [{ token: ClientMovement }], target: i0.ɵɵFactoryTarget.Injectable }); }
23327
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientMovementForm, providedIn: 'root' }); }
23476
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientMovementForm, deps: [{ token: ClientMovement }], target: i0.ɵɵFactoryTarget.Injectable }); }
23477
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientMovementForm, providedIn: 'root' }); }
23328
23478
  }
23329
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientMovementForm, decorators: [{
23479
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientMovementForm, decorators: [{
23330
23480
  type: Injectable,
23331
23481
  args: [{
23332
23482
  providedIn: 'root'
@@ -23339,10 +23489,10 @@ class EmployeeDetailsForm extends AbstractForm {
23339
23489
  firmBranches: new FormControl(employeeDetails.firmBranches, [Validators.required]),
23340
23490
  }, employeeDetails);
23341
23491
  }
23342
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeDetailsForm, deps: [{ token: EmployeeDetails }], target: i0.ɵɵFactoryTarget.Injectable }); }
23343
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeDetailsForm, providedIn: 'root' }); }
23492
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeDetailsForm, deps: [{ token: EmployeeDetails }], target: i0.ɵɵFactoryTarget.Injectable }); }
23493
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeDetailsForm, providedIn: 'root' }); }
23344
23494
  }
23345
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeDetailsForm, decorators: [{
23495
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeDetailsForm, decorators: [{
23346
23496
  type: Injectable,
23347
23497
  args: [{
23348
23498
  providedIn: 'root'
@@ -26626,5 +26776,5 @@ var MessagesEnum;
26626
26776
  * Generated bundle index. Do not edit.
26627
26777
  */
26628
26778
 
26629
- export { ADBLOCK_ERROR_HTML, ADBLOCK_ERROR_HTML_VALUE, AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockDetectorService, Address, AddressForm, AddressService, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AppPercentPipe, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AussieAppointment, AussieAppointmentForm, AussieBroker, AussieConfirmationForm, AussieService, AussieStore, AussieStoreForm, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionComment, BankTransactionCommentForm, BankTransactionCommentMessagesEnum, BankTransactionCommentService, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetCollection, BudgetForm, BudgetMessagesEnum, BudgetMetadataInterface, BudgetRule, BudgetRuleCollection, BudgetService, BudgetTypeEnum, BusinessChartAccountsEnum, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CapitalLoss, CapitalLossForm, CapitalLossMessagesEnum, CapitalLossService, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueCollection, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatFilterForm, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientCouponService, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteCollection, ClientInviteForm, ClientInviteMessages, ClientInvitePutForm, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementForm, ClientMovementMessagesEnum, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CollectionForm, CoreModule, CorelogicMessagesEnum, CorelogicService, CorelogicSuggestion, Country, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DateFormatsEnum, DateRange, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpRateEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderCollection, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialGoal, FinancialGoalCollection, FinancialGoalForm, FinancialGoalPaymentFrequencyEnum, FinancialGoalService, FinancialGoalStatusEnum, FinancialGoalTypeEnum, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, InvoiceTransactionsService, JsPdf, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanFrequencyEnum, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, 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, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, PriorTransactionService, Property, PropertyAddForm, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareForm, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationCollection, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, REPORTS, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestMessagesEnum, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceListEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SharesightDetails, SharesightDetailsMessagesEnum, SharesightDetailsService, SharesightPortfolio, SharesightPortfolioMessages, SharesightPortfolioService, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossCollection, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionCollection, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewFilterForm, TaxReviewFilterStatusEnum, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, TimezoneEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseCollection, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReportItem, TransactionReportItemCollection, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TreeNodeData, USER_ROLES, USER_WORK_POSITION, UniqueEmailValidator, User, UserCollection, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeCollection, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserForm, UserInviteForm, UserMedicareExemptionEnum, UserMessagesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimDetails, VehicleClaimDetailsForm, VehicleClaimDetailsMethodEnum, VehicleClaimDetailsService, VehicleClaimForm, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, YoutubeVideosEnum, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
26779
+ export { ADBLOCK_ERROR_HTML, ADBLOCK_ERROR_HTML_VALUE, AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockDetectorService, Address, AddressForm, AddressService, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AppPercentPipe, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AussieAppointment, AussieAppointmentForm, AussieBroker, AussieConfirmationForm, AussieService, AussieStore, AussieStoreForm, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionComment, BankTransactionCommentForm, BankTransactionCommentMessagesEnum, BankTransactionCommentService, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetCollection, BudgetForm, BudgetMessagesEnum, BudgetMetadataInterface, BudgetRule, BudgetRuleCollection, BudgetRuleForm, BudgetRuleService, BudgetService, BudgetTypeEnum, BusinessChartAccountsEnum, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CapitalLoss, CapitalLossForm, CapitalLossMessagesEnum, CapitalLossService, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueCollection, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatFilterForm, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientCouponService, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteCollection, ClientInviteForm, ClientInviteMessages, ClientInvitePutForm, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementForm, ClientMovementMessagesEnum, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CollectionForm, CoreModule, CorelogicMessagesEnum, CorelogicService, CorelogicSuggestion, Country, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DailyFrequencyEnum, DateFormatsEnum, DateRange, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpRateEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderCollection, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EXPENSE_CATEGORY_BY_TYPE, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialGoal, FinancialGoalCollection, FinancialGoalForm, FinancialGoalService, FinancialGoalStatusEnum, FinancialGoalTypeEnum, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, INCOME_CATEGORY_BY_TYPE, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, InvoiceTransactionsService, JsPdf, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, 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, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, PriorTransactionService, Property, PropertyAddForm, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareForm, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationCollection, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, REPORTS, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestMessagesEnum, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceListEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SharesightDetails, SharesightDetailsMessagesEnum, SharesightDetailsService, SharesightPortfolio, SharesightPortfolioMessages, SharesightPortfolioService, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossCollection, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionCollection, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewFilterForm, TaxReviewFilterStatusEnum, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, TimezoneEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseCollection, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReportItem, TransactionReportItemCollection, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TreeNodeData, USER_ROLES, USER_WORK_POSITION, UniqueEmailValidator, User, UserCollection, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeCollection, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserForm, UserInviteForm, UserMedicareExemptionEnum, UserMessagesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimDetails, VehicleClaimDetailsForm, VehicleClaimDetailsMethodEnum, VehicleClaimDetailsService, VehicleClaimForm, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, YoutubeVideosEnum, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
26630
26780
  //# sourceMappingURL=taxtank-core.mjs.map