taxtank-core 3.0.6 → 3.0.8

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.
@@ -64,10 +64,10 @@ class PdfService {
64
64
  formData.append('landscape', landscape ? '1' : '0');
65
65
  return this.http.post(`${this.environment.apiV2}/pdf/html`, formData, { responseType: 'blob' });
66
66
  }
67
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
68
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfService, providedIn: 'root' }); }
67
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
68
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfService, providedIn: 'root' }); }
69
69
  }
70
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfService, decorators: [{
70
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfService, decorators: [{
71
71
  type: Injectable,
72
72
  args: [{
73
73
  providedIn: 'root'
@@ -7194,14 +7194,16 @@ class PropertyEquityChartData {
7194
7194
  }
7195
7195
  const bankAccounts = this.bankAccounts.getByPropertyId(property.id);
7196
7196
  const loans = this.loans.getByBankAccountsIds(bankAccounts.getIds());
7197
- const offset = bankAccounts.filterBy('type', BankAccountTypeEnum.OFFSET).getPropertyBalanceAmount(property.id);
7197
+ // all not loan accounts connected to the property reduce the outstanding loan balance work like offset
7198
+ const offset = bankAccounts.getDebitAccounts().getPropertyBalanceAmount(property.id);
7199
+ let loanBalance = Math.abs(property.getForecastByYear(year).loanBalance) - offset;
7198
7200
  if (year > this.currentYear) {
7199
- return bankAccounts.items.reduce((totalSum, bankAccount) => totalSum + (bankAccount.getPropertyPercentage(property.id) * (loans.getByBankAccountId(bankAccount.id)?.getLastPaymentByYear(year)?.totalOwed || 0)), 0) - offset;
7201
+ loanBalance = bankAccounts.items.reduce((totalSum, bankAccount) => totalSum + (bankAccount.getPropertyPercentage(property.id) * (loans.getByBankAccountId(bankAccount.id)?.getLastPaymentByYear(year)?.totalOwed || 0)), 0) - offset;
7200
7202
  }
7201
7203
  if (year == this.currentYear) {
7202
- return Math.abs(bankAccounts.items.reduce((totalSum, bankAccount) => totalSum + bankAccount.getPropertyPercentage(property.id) * (bankAccount.convertedBalance || 0), 0));
7204
+ loanBalance = Math.abs(bankAccounts.items.reduce((totalSum, bankAccount) => totalSum + bankAccount.getPropertyPercentage(property.id) * (bankAccount.convertedBalance || 0), 0));
7203
7205
  }
7204
- return Math.abs(property.getForecastByYear(year).loanBalance) - offset;
7206
+ return loanBalance > 0 ? loanBalance : 0;
7205
7207
  // @TODO TT-4888 no idea why it was calculated like that
7206
7208
  // return property.getValuationByYear(year).marketValue - offset;
7207
7209
  }
@@ -7209,7 +7211,7 @@ class PropertyEquityChartData {
7209
7211
  if (new FinancialYear(property.contractDate).year > year) {
7210
7212
  return 0;
7211
7213
  }
7212
- return property.getValuationByYear(year).marketValue;
7214
+ return property.getValuationByYear(year)?.marketValue ?? 0;
7213
7215
  }
7214
7216
  /**
7215
7217
  * Check if loan balance is 0 and set it as null (to not to draw point on the chart)
@@ -7542,6 +7544,12 @@ class Transaction extends Transaction$1 {
7542
7544
  && rule.property?.id === this.property?.id
7543
7545
  && rule.business?.id === this.business?.id;
7544
7546
  }
7547
+ /**
7548
+ * @TODO claimAmount from backend shouldn't include share%(sharedClaimAmount should), the method is workaround
7549
+ */
7550
+ get grossClaimAmount() {
7551
+ return this.grossAmount * (this.claimPercent / 100);
7552
+ }
7545
7553
  }
7546
7554
  __decorate([
7547
7555
  Type(() => Transaction)
@@ -9124,7 +9132,7 @@ class PropertyReportItemDepreciation extends PropertyReportItem {
9124
9132
  this.description = DEPRECIATION_TYPE_LABELS[depreciations.first.type];
9125
9133
  }
9126
9134
  get claimAmount() {
9127
- return this.depreciations.claimAmount / this.sharePercent * 100;
9135
+ return round(this.amount * (this.claimPercent / 100), 2);
9128
9136
  }
9129
9137
  }
9130
9138
 
@@ -9139,7 +9147,7 @@ class PropertyReportItemTransaction extends PropertyReportItem {
9139
9147
  this.description = chartAccounts.name;
9140
9148
  }
9141
9149
  get claimAmount() {
9142
- return this.transactions.claimAmount / this.sharePercent * 100;
9150
+ return Math.abs(this.transactions.sumBy('grossClaimAmount'));
9143
9151
  }
9144
9152
  }
9145
9153
 
@@ -13247,10 +13255,10 @@ class EventDispatcherService {
13247
13255
  dispatch2(event) {
13248
13256
  this.eventSubject2.next(event);
13249
13257
  }
13250
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
13251
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EventDispatcherService, providedIn: 'root' }); }
13258
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
13259
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EventDispatcherService, providedIn: 'root' }); }
13252
13260
  }
13253
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EventDispatcherService, decorators: [{
13261
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EventDispatcherService, decorators: [{
13254
13262
  type: Injectable,
13255
13263
  args: [{
13256
13264
  providedIn: 'root'
@@ -13285,10 +13293,10 @@ class SseService {
13285
13293
  })
13286
13294
  .pipe(map((messageEvent) => JSON.parse(messageEvent.data)));
13287
13295
  }
13288
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SseService, deps: [{ token: i0.NgZone }, { token: i3.JwtService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13289
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SseService, providedIn: 'root' }); }
13296
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SseService, deps: [{ token: i0.NgZone }, { token: i3.JwtService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13297
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SseService, providedIn: 'root' }); }
13290
13298
  }
13291
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SseService, decorators: [{
13299
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SseService, decorators: [{
13292
13300
  type: Injectable,
13293
13301
  args: [{
13294
13302
  providedIn: 'root'
@@ -13376,10 +13384,10 @@ class DataService {
13376
13384
  setCache(data) {
13377
13385
  this.cache = this.createCollectionInstance(this.collectionClass, data);
13378
13386
  }
13379
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DataService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
13380
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DataService, providedIn: 'root' }); }
13387
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DataService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
13388
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DataService, providedIn: 'root' }); }
13381
13389
  }
13382
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DataService, decorators: [{
13390
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DataService, decorators: [{
13383
13391
  type: Injectable,
13384
13392
  args: [{
13385
13393
  providedIn: 'root'
@@ -13447,10 +13455,10 @@ class ToastService {
13447
13455
  message,
13448
13456
  }));
13449
13457
  }
13450
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
13451
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ToastService, providedIn: 'root' }); }
13458
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
13459
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ToastService, providedIn: 'root' }); }
13452
13460
  }
13453
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ToastService, decorators: [{
13461
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ToastService, decorators: [{
13454
13462
  type: Injectable,
13455
13463
  args: [{
13456
13464
  providedIn: 'root'
@@ -13843,10 +13851,10 @@ let RestService$1 = class RestService extends DataService {
13843
13851
  this.handleResponse([change.model], change.method);
13844
13852
  });
13845
13853
  }
13846
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13847
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, providedIn: 'root' }); }
13854
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13855
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, providedIn: 'root' }); }
13848
13856
  };
13849
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService$1, decorators: [{
13857
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService$1, decorators: [{
13850
13858
  type: Injectable,
13851
13859
  args: [{
13852
13860
  providedIn: 'root'
@@ -13989,10 +13997,10 @@ class BankAccountService extends RestService$1 {
13989
13997
  }
13990
13998
  });
13991
13999
  }
13992
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: SseService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13993
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountService, providedIn: 'root' }); }
14000
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: SseService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14001
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountService, providedIn: 'root' }); }
13994
14002
  }
13995
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountService, decorators: [{
14003
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountService, decorators: [{
13996
14004
  type: Injectable,
13997
14005
  args: [{
13998
14006
  providedIn: 'root'
@@ -14115,10 +14123,10 @@ class BankConnectionService extends RestService$1 {
14115
14123
  }
14116
14124
  });
14117
14125
  }
14118
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankConnectionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14119
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankConnectionService, providedIn: 'root' }); }
14126
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankConnectionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14127
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankConnectionService, providedIn: 'root' }); }
14120
14128
  }
14121
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankConnectionService, decorators: [{
14129
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankConnectionService, decorators: [{
14122
14130
  type: Injectable,
14123
14131
  args: [{
14124
14132
  providedIn: 'root'
@@ -14164,10 +14172,10 @@ class BankTransactionService extends RestService$1 {
14164
14172
  }
14165
14173
  });
14166
14174
  }
14167
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14168
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionService, providedIn: 'root' }); }
14175
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14176
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionService, providedIn: 'root' }); }
14169
14177
  }
14170
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionService, decorators: [{
14178
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionService, decorators: [{
14171
14179
  type: Injectable,
14172
14180
  args: [{
14173
14181
  providedIn: 'root'
@@ -14196,10 +14204,10 @@ class BankTransactionImportService extends RestService$1 {
14196
14204
  formData.append('file', file);
14197
14205
  return this.importFile(formData, `${this.environment.apiV2}/bank-accounts/${bankAccountId}/bank-transaction-imports`);
14198
14206
  }
14199
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionImportService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14200
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionImportService, providedIn: 'root' }); }
14207
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionImportService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14208
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionImportService, providedIn: 'root' }); }
14201
14209
  }
14202
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionImportService, decorators: [{
14210
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionImportService, decorators: [{
14203
14211
  type: Injectable,
14204
14212
  args: [{
14205
14213
  providedIn: 'root'
@@ -14244,10 +14252,10 @@ class BasiqTokenService extends RestService$1 {
14244
14252
  const now = new Date().getTime();
14245
14253
  return new BasiqToken(tokenResponse['access_token'], new Date(now + tokenResponse['expires_in'] * 1000));
14246
14254
  }
14247
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14248
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqTokenService, providedIn: 'root' }); }
14255
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14256
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenService, providedIn: 'root' }); }
14249
14257
  }
14250
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqTokenService, decorators: [{
14258
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenService, decorators: [{
14251
14259
  type: Injectable,
14252
14260
  args: [{
14253
14261
  providedIn: 'root'
@@ -14289,10 +14297,10 @@ class BasiqService extends RestService$1 {
14289
14297
  }
14290
14298
  });
14291
14299
  }
14292
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14293
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqService, providedIn: 'root' }); }
14300
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14301
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, providedIn: 'root' }); }
14294
14302
  }
14295
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqService, decorators: [{
14303
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, decorators: [{
14296
14304
  type: Injectable,
14297
14305
  args: [{
14298
14306
  providedIn: 'root'
@@ -14355,10 +14363,10 @@ class MixpanelService {
14355
14363
  }
14356
14364
  mixpanel['track_pageview']();
14357
14365
  }
14358
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MixpanelService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14359
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MixpanelService, providedIn: 'root' }); }
14366
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MixpanelService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14367
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MixpanelService, providedIn: 'root' }); }
14360
14368
  }
14361
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MixpanelService, decorators: [{
14369
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MixpanelService, decorators: [{
14362
14370
  type: Injectable,
14363
14371
  args: [{
14364
14372
  providedIn: 'root'
@@ -14425,10 +14433,10 @@ class JwtService extends JwtHelperService {
14425
14433
  isMe(userId) {
14426
14434
  return this.decode().id === userId;
14427
14435
  }
14428
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14429
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtService, providedIn: 'root' }); }
14436
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14437
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtService, providedIn: 'root' }); }
14430
14438
  }
14431
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtService, decorators: [{
14439
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtService, decorators: [{
14432
14440
  type: Injectable,
14433
14441
  args: [{
14434
14442
  providedIn: 'root'
@@ -14469,10 +14477,10 @@ class AuthService {
14469
14477
  this.jwtService.destroyTokens();
14470
14478
  location.replace(url);
14471
14479
  }
14472
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AuthService, deps: [{ token: i1.HttpClient }, { token: JwtService }, { token: MixpanelService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14473
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AuthService, providedIn: 'root' }); }
14480
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AuthService, deps: [{ token: i1.HttpClient }, { token: JwtService }, { token: MixpanelService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14481
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AuthService, providedIn: 'root' }); }
14474
14482
  }
14475
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AuthService, decorators: [{
14483
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AuthService, decorators: [{
14476
14484
  type: Injectable,
14477
14485
  args: [{
14478
14486
  providedIn: 'root'
@@ -14609,10 +14617,10 @@ class JwtInterceptor {
14609
14617
  // });
14610
14618
  });
14611
14619
  }
14612
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtInterceptor, deps: [{ token: JwtService }, { token: AuthService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14613
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtInterceptor }); }
14620
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtInterceptor, deps: [{ token: JwtService }, { token: AuthService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14621
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtInterceptor }); }
14614
14622
  }
14615
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtInterceptor, decorators: [{
14623
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtInterceptor, decorators: [{
14616
14624
  type: Injectable
14617
14625
  }], ctorParameters: () => [{ type: JwtService }, { type: AuthService }, { type: undefined, decorators: [{
14618
14626
  type: Inject,
@@ -14620,9 +14628,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImpor
14620
14628
  }] }] });
14621
14629
 
14622
14630
  let InterceptorsModule$1 = class InterceptorsModule {
14623
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
14624
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule }); }
14625
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, providers: [
14631
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
14632
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule }); }
14633
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, providers: [
14626
14634
  {
14627
14635
  provide: HTTP_INTERCEPTORS,
14628
14636
  useClass: JwtInterceptor,
@@ -14630,7 +14638,7 @@ let InterceptorsModule$1 = class InterceptorsModule {
14630
14638
  }
14631
14639
  ] }); }
14632
14640
  };
14633
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule$1, decorators: [{
14641
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule$1, decorators: [{
14634
14642
  type: NgModule,
14635
14643
  args: [{
14636
14644
  providers: [
@@ -14660,13 +14668,13 @@ class CommonModule {
14660
14668
  ]
14661
14669
  };
14662
14670
  }
14663
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
14664
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
14671
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
14672
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
14665
14673
  InterceptorsModule$1] }); }
14666
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
14674
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
14667
14675
  InterceptorsModule$1] }); }
14668
14676
  }
14669
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CommonModule, decorators: [{
14677
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, decorators: [{
14670
14678
  type: NgModule,
14671
14679
  args: [{
14672
14680
  declarations: [],
@@ -14741,10 +14749,10 @@ class BasiqUserService extends RestService$1 {
14741
14749
  window.location.replace(url);
14742
14750
  }));
14743
14751
  }
14744
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqUserService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14745
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqUserService, providedIn: 'root' }); }
14752
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqUserService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14753
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqUserService, providedIn: 'root' }); }
14746
14754
  }
14747
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqUserService, decorators: [{
14755
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqUserService, decorators: [{
14748
14756
  type: Injectable,
14749
14757
  args: [{
14750
14758
  providedIn: 'root'
@@ -14762,10 +14770,10 @@ class BankTransactionCommentService extends RestService$1 {
14762
14770
  this.endpointUri = 'bank-transaction-comments';
14763
14771
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
14764
14772
  }
14765
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionCommentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14766
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionCommentService, providedIn: 'root' }); }
14773
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionCommentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14774
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionCommentService, providedIn: 'root' }); }
14767
14775
  }
14768
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionCommentService, decorators: [{
14776
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionCommentService, decorators: [{
14769
14777
  type: Injectable,
14770
14778
  args: [{
14771
14779
  providedIn: 'root'
@@ -14791,10 +14799,10 @@ class BankService extends RestService$1 {
14791
14799
  this.endpointUri = 'banks';
14792
14800
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
14793
14801
  }
14794
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14795
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankService, providedIn: 'root' }); }
14802
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14803
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankService, providedIn: 'root' }); }
14796
14804
  }
14797
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankService, decorators: [{
14805
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankService, decorators: [{
14798
14806
  type: Injectable,
14799
14807
  args: [{
14800
14808
  providedIn: 'root'
@@ -14820,10 +14828,10 @@ class ExchangeRateService extends RestService$1 {
14820
14828
  this.collectionClass = Collection;
14821
14829
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
14822
14830
  }
14823
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExchangeRateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14824
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExchangeRateService, providedIn: 'root' }); }
14831
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExchangeRateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14832
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExchangeRateService, providedIn: 'root' }); }
14825
14833
  }
14826
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExchangeRateService, decorators: [{
14834
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExchangeRateService, decorators: [{
14827
14835
  type: Injectable,
14828
14836
  args: [{
14829
14837
  providedIn: 'root'
@@ -14839,10 +14847,10 @@ class BudgetService extends RestService$1 {
14839
14847
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
14840
14848
  this.roles = [UserRolesEnum.MONEY_TANK];
14841
14849
  }
14842
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14843
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' }); }
14850
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14851
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetService, providedIn: 'root' }); }
14844
14852
  }
14845
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetService, decorators: [{
14853
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetService, decorators: [{
14846
14854
  type: Injectable,
14847
14855
  args: [{
14848
14856
  providedIn: 'root'
@@ -14866,10 +14874,10 @@ class BudgetRuleService extends RestService$1 {
14866
14874
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
14867
14875
  this.roles = [UserRolesEnum.MONEY_TANK];
14868
14876
  }
14869
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14870
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetRuleService, providedIn: 'root' }); }
14877
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14878
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetRuleService, providedIn: 'root' }); }
14871
14879
  }
14872
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetRuleService, decorators: [{
14880
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetRuleService, decorators: [{
14873
14881
  type: Injectable,
14874
14882
  args: [{
14875
14883
  providedIn: 'root'
@@ -14895,10 +14903,10 @@ class FinancialGoalService extends RestService$1 {
14895
14903
  complete(goal) {
14896
14904
  return this.put(Object.assign({}, goal, { status: FinancialGoalStatusEnum.COMPLETE, finalValue: goal.bankAccount.convertedBalance }));
14897
14905
  }
14898
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialGoalService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14899
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialGoalService, providedIn: 'root' }); }
14906
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialGoalService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14907
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialGoalService, providedIn: 'root' }); }
14900
14908
  }
14901
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialGoalService, decorators: [{
14909
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialGoalService, decorators: [{
14902
14910
  type: Injectable,
14903
14911
  args: [{
14904
14912
  providedIn: 'root'
@@ -14929,10 +14937,10 @@ class CalendarReminderService extends RestService$1 {
14929
14937
  this.listenCSE(SoleBusiness, this.refreshCache, ['put']);
14930
14938
  this.listenCSE(IncomeSource, this.refreshCache, ['put']);
14931
14939
  }
14932
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CalendarReminderService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14933
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CalendarReminderService, providedIn: 'root' }); }
14940
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CalendarReminderService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14941
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CalendarReminderService, providedIn: 'root' }); }
14934
14942
  }
14935
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CalendarReminderService, decorators: [{
14943
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CalendarReminderService, decorators: [{
14936
14944
  type: Injectable,
14937
14945
  args: [{
14938
14946
  providedIn: 'root',
@@ -14961,10 +14969,10 @@ class ChartAccountsDepreciationService extends RestService$1 {
14961
14969
  this.collectionClass = Collection;
14962
14970
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
14963
14971
  }
14964
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14965
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' }); }
14972
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14973
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' }); }
14966
14974
  }
14967
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
14975
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
14968
14976
  type: Injectable,
14969
14977
  args: [{
14970
14978
  providedIn: 'root'
@@ -15003,10 +15011,10 @@ class ChartAccountsService extends RestService$1 {
15003
15011
  return headings;
15004
15012
  }));
15005
15013
  }
15006
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15007
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsService, providedIn: 'root' }); }
15014
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15015
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsService, providedIn: 'root' }); }
15008
15016
  }
15009
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsService, decorators: [{
15017
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsService, decorators: [{
15010
15018
  type: Injectable,
15011
15019
  args: [{
15012
15020
  providedIn: 'root'
@@ -15090,10 +15098,10 @@ class ChatService extends RestService$1 {
15090
15098
  this.setCache(cache, true);
15091
15099
  }, ['post']);
15092
15100
  }
15093
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChatService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15094
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChatService, providedIn: 'root' }); }
15101
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChatService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15102
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChatService, providedIn: 'root' }); }
15095
15103
  }
15096
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChatService, decorators: [{
15104
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChatService, decorators: [{
15097
15105
  type: Injectable,
15098
15106
  args: [{
15099
15107
  providedIn: 'root'
@@ -15123,10 +15131,10 @@ class MessageService extends RestService$1 {
15123
15131
  getUnreadChatsAmount() {
15124
15132
  return this.get().pipe(map((messages) => messages.getUnreadChatsAmount()));
15125
15133
  }
15126
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15127
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageService, providedIn: 'root' }); }
15134
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15135
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageService, providedIn: 'root' }); }
15128
15136
  }
15129
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageService, decorators: [{
15137
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageService, decorators: [{
15130
15138
  type: Injectable,
15131
15139
  args: [{
15132
15140
  providedIn: 'root'
@@ -15195,10 +15203,10 @@ class MessageDocumentService extends RestService$1 {
15195
15203
  addBatch(chatId, files) {
15196
15204
  return combineLatest(files.map((file) => this.add(chatId, file))).pipe(map((docsBase) => docsBase.map((docBase) => plainToClass(MessageDocument, docBase))));
15197
15205
  }
15198
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageDocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15199
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageDocumentService, providedIn: 'root' }); }
15206
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageDocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15207
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageDocumentService, providedIn: 'root' }); }
15200
15208
  }
15201
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageDocumentService, decorators: [{
15209
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageDocumentService, decorators: [{
15202
15210
  type: Injectable,
15203
15211
  args: [{
15204
15212
  providedIn: 'root'
@@ -15219,10 +15227,10 @@ class DashboardSettingsService extends RestService$1 {
15219
15227
  this.endpointUri = 'dashboard-settings';
15220
15228
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
15221
15229
  }
15222
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DashboardSettingsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15223
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DashboardSettingsService, providedIn: 'root' }); }
15230
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DashboardSettingsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15231
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DashboardSettingsService, providedIn: 'root' }); }
15224
15232
  }
15225
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DashboardSettingsService, decorators: [{
15233
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DashboardSettingsService, decorators: [{
15226
15234
  type: Injectable,
15227
15235
  args: [{
15228
15236
  providedIn: 'root'
@@ -15312,10 +15320,10 @@ class DepreciationService extends RestService$1 {
15312
15320
  this.refreshCache();
15313
15321
  });
15314
15322
  }
15315
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15316
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationService, providedIn: 'root' }); }
15323
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15324
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationService, providedIn: 'root' }); }
15317
15325
  }
15318
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationService, decorators: [{
15326
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationService, decorators: [{
15319
15327
  type: Injectable,
15320
15328
  args: [{
15321
15329
  providedIn: 'root'
@@ -15337,10 +15345,10 @@ class DepreciationCapitalProjectService extends RestService$1 {
15337
15345
  this.endpointUri = 'depreciation-capital-projects';
15338
15346
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
15339
15347
  }
15340
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationCapitalProjectService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15341
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' }); }
15348
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationCapitalProjectService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15349
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' }); }
15342
15350
  }
15343
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
15351
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
15344
15352
  type: Injectable,
15345
15353
  args: [{
15346
15354
  providedIn: 'root'
@@ -15363,10 +15371,10 @@ class PriorDepreciationService extends RestService$1 {
15363
15371
  const financialYear = new FinancialYear(new FinancialYear().year - 1);
15364
15372
  return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(depreciations => depreciations.filterByFinancialYear('date', null, financialYear)));
15365
15373
  }
15366
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15367
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorDepreciationService, providedIn: 'root' }); }
15374
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15375
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorDepreciationService, providedIn: 'root' }); }
15368
15376
  }
15369
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorDepreciationService, decorators: [{
15377
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorDepreciationService, decorators: [{
15370
15378
  type: Injectable,
15371
15379
  args: [{
15372
15380
  providedIn: 'root'
@@ -15392,10 +15400,10 @@ class DocumentFolderService extends RestService$1 {
15392
15400
  this.modelClass = DocumentFolder;
15393
15401
  this.disabledMethods = ['deleteBatch', 'postBatch', 'putBatch'];
15394
15402
  }
15395
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15396
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentFolderService, providedIn: 'root' }); }
15403
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15404
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentFolderService, providedIn: 'root' }); }
15397
15405
  }
15398
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentFolderService, decorators: [{
15406
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentFolderService, decorators: [{
15399
15407
  type: Injectable,
15400
15408
  args: [{
15401
15409
  providedIn: 'root'
@@ -15420,10 +15428,10 @@ class DocumentService extends RestService$1 {
15420
15428
  postFiles(folder, files) {
15421
15429
  return this.postParallel(files.map(file => plainToClass(Document, { folder, file })));
15422
15430
  }
15423
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15424
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentService, providedIn: 'root' }); }
15431
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15432
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentService, providedIn: 'root' }); }
15425
15433
  }
15426
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentService, decorators: [{
15434
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentService, decorators: [{
15427
15435
  type: Injectable,
15428
15436
  args: [{
15429
15437
  providedIn: 'root'
@@ -15508,10 +15516,10 @@ class FacebookService {
15508
15516
  });
15509
15517
  });
15510
15518
  }
15511
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FacebookService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15512
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FacebookService, providedIn: 'root' }); }
15519
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FacebookService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15520
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FacebookService, providedIn: 'root' }); }
15513
15521
  }
15514
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FacebookService, decorators: [{
15522
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FacebookService, decorators: [{
15515
15523
  type: Injectable,
15516
15524
  args: [{
15517
15525
  providedIn: 'root'
@@ -15578,10 +15586,10 @@ class GoogleService {
15578
15586
  logout() {
15579
15587
  google.accounts.id.disableAutoSelect();
15580
15588
  }
15581
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GoogleService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15582
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GoogleService, providedIn: 'root' }); }
15589
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GoogleService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15590
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GoogleService, providedIn: 'root' }); }
15583
15591
  }
15584
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GoogleService, decorators: [{
15592
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GoogleService, decorators: [{
15585
15593
  type: Injectable,
15586
15594
  args: [{
15587
15595
  providedIn: 'root'
@@ -15613,10 +15621,10 @@ class FileService extends RestService$1 {
15613
15621
  download(file) {
15614
15622
  return this.http.get(`${this.apiUrl}/${file.id}/download`, { responseType: 'blob' });
15615
15623
  }
15616
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15617
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FileService, providedIn: 'root' }); }
15624
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15625
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FileService, providedIn: 'root' }); }
15618
15626
  }
15619
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FileService, decorators: [{
15627
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FileService, decorators: [{
15620
15628
  type: Injectable,
15621
15629
  args: [{
15622
15630
  providedIn: 'root'
@@ -15706,10 +15714,10 @@ class ClientInviteService extends RestService$1 {
15706
15714
  }
15707
15715
  });
15708
15716
  }
15709
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientInviteService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15710
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientInviteService, providedIn: 'root' }); }
15717
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientInviteService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15718
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientInviteService, providedIn: 'root' }); }
15711
15719
  }
15712
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientInviteService, decorators: [{
15720
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientInviteService, decorators: [{
15713
15721
  type: Injectable,
15714
15722
  args: [{
15715
15723
  providedIn: 'root'
@@ -15799,10 +15807,10 @@ class ClientMovementService extends RestService$1 {
15799
15807
  // this.updateCache([clientMovement], 'delete');
15800
15808
  }));
15801
15809
  }
15802
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15803
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementService, providedIn: 'root' }); }
15810
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15811
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementService, providedIn: 'root' }); }
15804
15812
  }
15805
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementService, decorators: [{
15813
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementService, decorators: [{
15806
15814
  type: Injectable,
15807
15815
  args: [{
15808
15816
  providedIn: 'root'
@@ -15863,10 +15871,10 @@ class EmployeeService extends RestService$1 {
15863
15871
  index === -1 ? employee.roles.push(role) : employee.roles.splice(index, 1);
15864
15872
  return super.put(employee, `${this.environment.apiV2}/${this.endpointUri}/${employee.id}`);
15865
15873
  }
15866
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15867
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeService, providedIn: 'root' }); }
15874
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15875
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeService, providedIn: 'root' }); }
15868
15876
  }
15869
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeService, decorators: [{
15877
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeService, decorators: [{
15870
15878
  type: Injectable,
15871
15879
  args: [{
15872
15880
  providedIn: 'root'
@@ -15927,10 +15935,10 @@ class EmployeeInviteService extends RestService$1 {
15927
15935
  return updatedInvite;
15928
15936
  }));
15929
15937
  }
15930
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15931
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' }); }
15938
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15939
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' }); }
15932
15940
  }
15933
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeInviteService, decorators: [{
15941
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeInviteService, decorators: [{
15934
15942
  type: Injectable,
15935
15943
  args: [{
15936
15944
  providedIn: 'root'
@@ -15954,10 +15962,10 @@ class ClientPortfolioReportService {
15954
15962
  return new ClientPortfolioReportCollection(clientReports);
15955
15963
  }));
15956
15964
  }
15957
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientPortfolioReportService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15958
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' }); }
15965
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientPortfolioReportService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15966
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' }); }
15959
15967
  }
15960
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
15968
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
15961
15969
  type: Injectable,
15962
15970
  args: [{
15963
15971
  providedIn: 'root'
@@ -16001,10 +16009,10 @@ class FirmService {
16001
16009
  this.firmSubject.next(updatedInstance);
16002
16010
  }));
16003
16011
  }
16004
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16005
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmService, providedIn: 'root' }); }
16012
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16013
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmService, providedIn: 'root' }); }
16006
16014
  }
16007
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmService, decorators: [{
16015
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmService, decorators: [{
16008
16016
  type: Injectable,
16009
16017
  args: [{
16010
16018
  providedIn: 'root'
@@ -16022,10 +16030,10 @@ class FirmBranchService extends RestService$1 {
16022
16030
  this.collectionClass = (Collection);
16023
16031
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
16024
16032
  }
16025
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmBranchService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16026
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmBranchService, providedIn: 'root' }); }
16033
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmBranchService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16034
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmBranchService, providedIn: 'root' }); }
16027
16035
  }
16028
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmBranchService, decorators: [{
16036
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmBranchService, decorators: [{
16029
16037
  type: Injectable,
16030
16038
  args: [{
16031
16039
  providedIn: 'root'
@@ -16266,10 +16274,10 @@ class RestService {
16266
16274
  getCache() {
16267
16275
  return clone(this.cache);
16268
16276
  }
16269
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16270
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, providedIn: 'root' }); }
16277
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16278
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, providedIn: 'root' }); }
16271
16279
  }
16272
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, decorators: [{
16280
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, decorators: [{
16273
16281
  type: Injectable,
16274
16282
  args: [{
16275
16283
  providedIn: 'root'
@@ -16344,10 +16352,10 @@ class IncomeSourceForecastService extends RestService {
16344
16352
  return incomeSource.incomeSourceForecasts;
16345
16353
  }).flat();
16346
16354
  }
16347
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16348
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' }); }
16355
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16356
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' }); }
16349
16357
  }
16350
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
16358
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
16351
16359
  type: Injectable,
16352
16360
  args: [{
16353
16361
  providedIn: 'root'
@@ -16421,10 +16429,10 @@ class SalaryForecastService extends RestService {
16421
16429
  return incomeSource.salaryForecasts;
16422
16430
  }).flat();
16423
16431
  }
16424
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SalaryForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16425
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SalaryForecastService, providedIn: 'root' }); }
16432
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SalaryForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16433
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SalaryForecastService, providedIn: 'root' }); }
16426
16434
  }
16427
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SalaryForecastService, decorators: [{
16435
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SalaryForecastService, decorators: [{
16428
16436
  type: Injectable,
16429
16437
  args: [{
16430
16438
  providedIn: 'root'
@@ -16506,10 +16514,10 @@ class SoleForecastService extends RestService {
16506
16514
  this.refreshCache();
16507
16515
  });
16508
16516
  }
16509
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16510
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleForecastService, providedIn: 'root' }); }
16517
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16518
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleForecastService, providedIn: 'root' }); }
16511
16519
  }
16512
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleForecastService, decorators: [{
16520
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleForecastService, decorators: [{
16513
16521
  type: Injectable,
16514
16522
  args: [{
16515
16523
  providedIn: 'root'
@@ -16592,10 +16600,10 @@ class IncomeSourceService extends RestService {
16592
16600
  this.refreshCache();
16593
16601
  });
16594
16602
  }
16595
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16596
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceService, providedIn: 'root' }); }
16603
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16604
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceService, providedIn: 'root' }); }
16597
16605
  }
16598
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceService, decorators: [{
16606
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceService, decorators: [{
16599
16607
  type: Injectable,
16600
16608
  args: [{
16601
16609
  providedIn: 'root'
@@ -16668,10 +16676,10 @@ class BorrowingExpenseService {
16668
16676
  return combinedBorrowingExpenses;
16669
16677
  }));
16670
16678
  }
16671
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingExpenseService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16672
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' }); }
16679
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingExpenseService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16680
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' }); }
16673
16681
  }
16674
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingExpenseService, decorators: [{
16682
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingExpenseService, decorators: [{
16675
16683
  type: Injectable,
16676
16684
  args: [{
16677
16685
  providedIn: 'root'
@@ -16755,10 +16763,10 @@ class LoanService extends RestService$1 {
16755
16763
  delete(loan) {
16756
16764
  return super.delete(loan, `${this.environment.apiV2}/loans/${loan.id}`);
16757
16765
  }
16758
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: LoanService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16759
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: LoanService, providedIn: 'root' }); }
16766
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: LoanService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16767
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: LoanService, providedIn: 'root' }); }
16760
16768
  }
16761
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: LoanService, decorators: [{
16769
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: LoanService, decorators: [{
16762
16770
  type: Injectable,
16763
16771
  args: [{
16764
16772
  providedIn: 'root'
@@ -16784,10 +16792,10 @@ class BorrowingReportService extends RestService$1 {
16784
16792
  this.collectionClass = Collection;
16785
16793
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
16786
16794
  }
16787
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16788
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingReportService, providedIn: 'root' }); }
16795
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16796
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingReportService, providedIn: 'root' }); }
16789
16797
  }
16790
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingReportService, decorators: [{
16798
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingReportService, decorators: [{
16791
16799
  type: Injectable,
16792
16800
  args: [{
16793
16801
  providedIn: 'root'
@@ -16812,10 +16820,10 @@ class PropertyCategoryService extends RestService$1 {
16812
16820
  this.endpointUri = 'properties/categories';
16813
16821
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
16814
16822
  }
16815
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16816
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' }); }
16823
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16824
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' }); }
16817
16825
  }
16818
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryService, decorators: [{
16826
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryService, decorators: [{
16819
16827
  type: Injectable,
16820
16828
  args: [{
16821
16829
  providedIn: 'root'
@@ -16837,10 +16845,10 @@ class PropertyCategoryMovementService extends RestService$1 {
16837
16845
  this.listenCSE(Property, this.refreshCache, ['post']);
16838
16846
  this.listenCSE(PropertyValuation, this.refreshCache);
16839
16847
  }
16840
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16841
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' }); }
16848
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16849
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' }); }
16842
16850
  }
16843
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
16851
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
16844
16852
  type: Injectable,
16845
16853
  args: [{
16846
16854
  providedIn: 'root'
@@ -16921,10 +16929,10 @@ class TaxExemptionService extends DataService {
16921
16929
  this.collectionClass = TaxExemptionCollection;
16922
16930
  this.setCache(TaxExemptions);
16923
16931
  }
16924
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxExemptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
16925
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxExemptionService, providedIn: 'root' }); }
16932
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxExemptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
16933
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxExemptionService, providedIn: 'root' }); }
16926
16934
  }
16927
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxExemptionService, decorators: [{
16935
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxExemptionService, decorators: [{
16928
16936
  type: Injectable,
16929
16937
  args: [{
16930
16938
  providedIn: 'root'
@@ -16940,10 +16948,10 @@ class PropertySaleService extends RestService$1 {
16940
16948
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
16941
16949
  this.roles = [UserRolesEnum$1.PROPERTY_TANK];
16942
16950
  }
16943
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16944
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertySaleService, providedIn: 'root' }); }
16951
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16952
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertySaleService, providedIn: 'root' }); }
16945
16953
  }
16946
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertySaleService, decorators: [{
16954
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertySaleService, decorators: [{
16947
16955
  type: Injectable,
16948
16956
  args: [{
16949
16957
  providedIn: 'root'
@@ -16997,10 +17005,10 @@ class PropertyShareService extends RestService$1 {
16997
17005
  listenSalesChanges() {
16998
17006
  this.listenCSE(PropertySale, this.refreshCache, ['post', 'delete']);
16999
17007
  }
17000
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyShareService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17001
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyShareService, providedIn: 'root' }); }
17008
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyShareService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17009
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyShareService, providedIn: 'root' }); }
17002
17010
  }
17003
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyShareService, decorators: [{
17011
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyShareService, decorators: [{
17004
17012
  type: Injectable,
17005
17013
  args: [{
17006
17014
  providedIn: 'root'
@@ -17019,10 +17027,10 @@ class PropertyValuationService extends RestService$1 {
17019
17027
  this.disabledMethods = ['postBatch', 'putBatch'];
17020
17028
  this.useBackendError = true;
17021
17029
  }
17022
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyValuationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17023
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyValuationService, providedIn: 'root' }); }
17030
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyValuationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17031
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyValuationService, providedIn: 'root' }); }
17024
17032
  }
17025
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyValuationService, decorators: [{
17033
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyValuationService, decorators: [{
17026
17034
  type: Injectable,
17027
17035
  args: [{
17028
17036
  providedIn: 'root'
@@ -17166,10 +17174,10 @@ class PropertyService extends RestService$1 {
17166
17174
  return of({ growthPercent: 0, lowMarketValue: 0, marketValue: 0, highMarketValue: 0, confidence: PropertyCorelogicStatsConfidenceTypeEnum.LOW });
17167
17175
  }));
17168
17176
  }
17169
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17170
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
17177
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17178
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
17171
17179
  }
17172
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyService, decorators: [{
17180
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyService, decorators: [{
17173
17181
  type: Injectable,
17174
17182
  args: [{
17175
17183
  providedIn: 'root'
@@ -17226,10 +17234,10 @@ class ServiceNotificationService extends RestService {
17226
17234
  this.eventDispatcherService.dispatch(new AppEvent(AppEventTypeEnum.NOTIFICATION_ADDED, notification));
17227
17235
  });
17228
17236
  }
17229
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceNotificationService, deps: [{ token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable }); }
17230
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' }); }
17237
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceNotificationService, deps: [{ token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable }); }
17238
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' }); }
17231
17239
  }
17232
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceNotificationService, decorators: [{
17240
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceNotificationService, decorators: [{
17233
17241
  type: Injectable,
17234
17242
  args: [{
17235
17243
  providedIn: 'root'
@@ -17258,10 +17266,10 @@ class SoleBusinessService extends RestService$1 {
17258
17266
  this.roles = [UserRolesEnum$1.SOLE_TANK];
17259
17267
  this.useBackendError = true;
17260
17268
  }
17261
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17262
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessService, providedIn: 'root' }); }
17269
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17270
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessService, providedIn: 'root' }); }
17263
17271
  }
17264
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessService, decorators: [{
17272
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessService, decorators: [{
17265
17273
  type: Injectable,
17266
17274
  args: [{
17267
17275
  providedIn: 'root'
@@ -17274,10 +17282,10 @@ class SoleBusinessActivityService extends RestService {
17274
17282
  this.modelClass = SoleBusinessActivity;
17275
17283
  this.url = 'sole-business-activities';
17276
17284
  }
17277
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17278
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' }); }
17285
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17286
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' }); }
17279
17287
  }
17280
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
17288
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
17281
17289
  type: Injectable,
17282
17290
  args: [{
17283
17291
  providedIn: 'root'
@@ -17306,10 +17314,10 @@ class SoleBusinessLossService extends RestService$1 {
17306
17314
  this.refreshCache();
17307
17315
  });
17308
17316
  }
17309
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17310
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' }); }
17317
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17318
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' }); }
17311
17319
  }
17312
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossService, decorators: [{
17320
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossService, decorators: [{
17313
17321
  type: Injectable,
17314
17322
  args: [{
17315
17323
  providedIn: 'root'
@@ -17328,10 +17336,10 @@ class SoleBusinessLossOffsetRuleService extends RestService {
17328
17336
  this.modelClass = SoleBusinessLossOffsetRule;
17329
17337
  this.url = 'sole-business-loss-offset-rules';
17330
17338
  }
17331
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17332
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' }); }
17339
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17340
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' }); }
17333
17341
  }
17334
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
17342
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
17335
17343
  type: Injectable,
17336
17344
  args: [{
17337
17345
  providedIn: 'root'
@@ -17347,10 +17355,10 @@ class SoleContactService extends RestService$1 {
17347
17355
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
17348
17356
  this.useBackendError = true;
17349
17357
  }
17350
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17351
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleContactService, providedIn: 'root' }); }
17358
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17359
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleContactService, providedIn: 'root' }); }
17352
17360
  }
17353
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleContactService, decorators: [{
17361
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleContactService, decorators: [{
17354
17362
  type: Injectable,
17355
17363
  args: [{
17356
17364
  providedIn: 'root'
@@ -17377,10 +17385,10 @@ class BusinessDepreciationMethodService extends RestService$1 {
17377
17385
  this.roles = [UserRolesEnum.SOLE_TANK];
17378
17386
  this.useBackendError = true;
17379
17387
  }
17380
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessDepreciationMethodService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17381
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessDepreciationMethodService, providedIn: 'root' }); }
17388
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessDepreciationMethodService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17389
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessDepreciationMethodService, providedIn: 'root' }); }
17382
17390
  }
17383
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessDepreciationMethodService, decorators: [{
17391
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessDepreciationMethodService, decorators: [{
17384
17392
  type: Injectable,
17385
17393
  args: [{
17386
17394
  providedIn: 'root'
@@ -17402,10 +17410,10 @@ class SoleDetailsService extends RestService$1 {
17402
17410
  get() {
17403
17411
  return super.get().pipe(map(soleDetails => soleDetails.length ? soleDetails : new Collection([plainToClass(SoleDetails, {})])));
17404
17412
  }
17405
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17406
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsService, providedIn: 'root' }); }
17413
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17414
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsService, providedIn: 'root' }); }
17407
17415
  }
17408
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsService, decorators: [{
17416
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsService, decorators: [{
17409
17417
  type: Injectable,
17410
17418
  args: [{
17411
17419
  providedIn: 'root'
@@ -17447,10 +17455,10 @@ class SoleInvoiceService extends RestService$1 {
17447
17455
  getInvoices() {
17448
17456
  return this.get().pipe(map((invoices) => invoices.filterBy('type', SoleInvoiceTypeEnum.INVOICE)));
17449
17457
  }
17450
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17451
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' }); }
17458
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17459
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' }); }
17452
17460
  }
17453
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceService, decorators: [{
17461
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceService, decorators: [{
17454
17462
  type: Injectable,
17455
17463
  args: [{
17456
17464
  providedIn: 'root'
@@ -17466,10 +17474,10 @@ class SoleInvoiceTemplateService extends RestService {
17466
17474
  this.modelClass = SoleInvoiceTemplate;
17467
17475
  this.url = 'sole-invoice-templates';
17468
17476
  }
17469
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17470
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' }); }
17477
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17478
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' }); }
17471
17479
  }
17472
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
17480
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
17473
17481
  type: Injectable,
17474
17482
  args: [{
17475
17483
  providedIn: 'root'
@@ -17493,10 +17501,10 @@ class BasReportService extends RestService$1 {
17493
17501
  this.roles = [UserRolesEnum.SOLE_TANK];
17494
17502
  this.useBackendError = true;
17495
17503
  }
17496
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17497
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasReportService, providedIn: 'root' }); }
17504
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17505
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasReportService, providedIn: 'root' }); }
17498
17506
  }
17499
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasReportService, decorators: [{
17507
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasReportService, decorators: [{
17500
17508
  type: Injectable,
17501
17509
  args: [{
17502
17510
  providedIn: 'root'
@@ -17520,10 +17528,10 @@ class ServicePaymentService extends RestService$1 {
17520
17528
  }
17521
17529
  return this.http.get(`${this.environment.apiV2}/service-payments/${payment.id}/invoice-url`);
17522
17530
  }
17523
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17524
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentService, providedIn: 'root' }); }
17531
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17532
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentService, providedIn: 'root' }); }
17525
17533
  }
17526
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentService, decorators: [{
17534
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentService, decorators: [{
17527
17535
  type: Injectable,
17528
17536
  args: [{
17529
17537
  providedIn: 'root'
@@ -17555,10 +17563,10 @@ class ServicePaymentMethodService extends RestService$1 {
17555
17563
  return this.http.put(`${this.apiUrl}/${paymentMethod.id}/default`, {})
17556
17564
  .pipe(map((updatedPaymentMethod) => plainToClass(ServicePaymentMethod, updatedPaymentMethod)));
17557
17565
  }
17558
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentMethodService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17559
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' }); }
17566
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentMethodService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17567
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' }); }
17560
17568
  }
17561
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
17569
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
17562
17570
  type: Injectable,
17563
17571
  args: [{
17564
17572
  providedIn: 'root'
@@ -17579,10 +17587,10 @@ class ServicePriceService extends RestService$1 {
17579
17587
  this.collectionClass = ServicePriceCollection;
17580
17588
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
17581
17589
  }
17582
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17583
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePriceService, providedIn: 'root' }); }
17590
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17591
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePriceService, providedIn: 'root' }); }
17584
17592
  }
17585
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePriceService, decorators: [{
17593
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePriceService, decorators: [{
17586
17594
  type: Injectable,
17587
17595
  args: [{
17588
17596
  providedIn: 'root'
@@ -17667,10 +17675,10 @@ class SubscriptionService extends RestService$1 {
17667
17675
  get(path = this.apiUrl) {
17668
17676
  return super.get(path).pipe(map(subscriptions => subscriptions.sortBy('isActive', 'ask')));
17669
17677
  }
17670
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SubscriptionService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17671
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SubscriptionService, providedIn: 'root' }); }
17678
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SubscriptionService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17679
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SubscriptionService, providedIn: 'root' }); }
17672
17680
  }
17673
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SubscriptionService, decorators: [{
17681
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SubscriptionService, decorators: [{
17674
17682
  type: Injectable,
17675
17683
  args: [{
17676
17684
  providedIn: 'root'
@@ -17688,10 +17696,10 @@ class ServiceProductService extends RestService$1 {
17688
17696
  this.endpointUri = 'service-products';
17689
17697
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
17690
17698
  }
17691
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17692
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceProductService, providedIn: 'root' }); }
17699
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17700
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceProductService, providedIn: 'root' }); }
17693
17701
  }
17694
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceProductService, decorators: [{
17702
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceProductService, decorators: [{
17695
17703
  type: Injectable,
17696
17704
  args: [{
17697
17705
  providedIn: 'root'
@@ -17827,10 +17835,10 @@ class TaxReviewHistoryService extends RestService {
17827
17835
  this.updateCache();
17828
17836
  });
17829
17837
  }
17830
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewHistoryService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17831
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' }); }
17838
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewHistoryService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17839
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' }); }
17832
17840
  }
17833
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
17841
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
17834
17842
  type: Injectable,
17835
17843
  args: [{
17836
17844
  providedIn: 'root'
@@ -17923,10 +17931,10 @@ class TaxReviewService extends RestService {
17923
17931
  }
17924
17932
  });
17925
17933
  }
17926
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17927
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewService, providedIn: 'root' }); }
17934
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17935
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewService, providedIn: 'root' }); }
17928
17936
  }
17929
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewService, decorators: [{
17937
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewService, decorators: [{
17930
17938
  type: Injectable,
17931
17939
  args: [{
17932
17940
  providedIn: 'root'
@@ -18257,10 +18265,10 @@ class TaxSummaryService {
18257
18265
  this.getForecast().subscribe();
18258
18266
  });
18259
18267
  }
18260
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxSummaryService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
18261
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxSummaryService, providedIn: 'root' }); }
18268
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxSummaryService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
18269
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxSummaryService, providedIn: 'root' }); }
18262
18270
  }
18263
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxSummaryService, decorators: [{
18271
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxSummaryService, decorators: [{
18264
18272
  type: Injectable,
18265
18273
  args: [{
18266
18274
  providedIn: 'root'
@@ -18281,10 +18289,10 @@ class AllocationRuleService extends RestService$1 {
18281
18289
  getCustomHttpErrorMessages() {
18282
18290
  return { 422: 'You can only have 10 conditions in a rule' };
18283
18291
  }
18284
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18285
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AllocationRuleService, providedIn: 'root' }); }
18292
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18293
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AllocationRuleService, providedIn: 'root' }); }
18286
18294
  }
18287
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AllocationRuleService, decorators: [{
18295
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AllocationRuleService, decorators: [{
18288
18296
  type: Injectable,
18289
18297
  args: [{
18290
18298
  providedIn: 'root'
@@ -18389,10 +18397,10 @@ class TransactionAllocationService extends RestService {
18389
18397
  }
18390
18398
  });
18391
18399
  }
18392
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionAllocationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
18393
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' }); }
18400
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionAllocationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
18401
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' }); }
18394
18402
  }
18395
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionAllocationService, decorators: [{
18403
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionAllocationService, decorators: [{
18396
18404
  type: Injectable,
18397
18405
  args: [{
18398
18406
  providedIn: 'root'
@@ -18644,10 +18652,10 @@ class TransactionService extends RestService {
18644
18652
  }
18645
18653
  });
18646
18654
  }
18647
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
18648
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionService, providedIn: 'root' }); }
18655
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
18656
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionService, providedIn: 'root' }); }
18649
18657
  }
18650
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionService, decorators: [{
18658
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionService, decorators: [{
18651
18659
  type: Injectable,
18652
18660
  args: [{
18653
18661
  providedIn: 'root'
@@ -18673,10 +18681,10 @@ class PriorTransactionService extends RestService$1 {
18673
18681
  const financialYear = new FinancialYear(new FinancialYear().year - 1);
18674
18682
  return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(transactions => transactions.filterByFinancialYear('date', null, financialYear)));
18675
18683
  }
18676
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18677
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorTransactionService, providedIn: 'root' }); }
18684
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18685
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorTransactionService, providedIn: 'root' }); }
18678
18686
  }
18679
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorTransactionService, decorators: [{
18687
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorTransactionService, decorators: [{
18680
18688
  type: Injectable,
18681
18689
  args: [{
18682
18690
  providedIn: 'root'
@@ -18698,10 +18706,10 @@ class InvoiceTransactionsService extends RestService$1 {
18698
18706
  this.endpointUri = 'invoices/transactions';
18699
18707
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
18700
18708
  }
18701
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InvoiceTransactionsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18702
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InvoiceTransactionsService, providedIn: 'root' }); }
18709
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InvoiceTransactionsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18710
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InvoiceTransactionsService, providedIn: 'root' }); }
18703
18711
  }
18704
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InvoiceTransactionsService, decorators: [{
18712
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InvoiceTransactionsService, decorators: [{
18705
18713
  type: Injectable,
18706
18714
  args: [{
18707
18715
  providedIn: 'root'
@@ -18725,10 +18733,10 @@ class YoutubeService {
18725
18733
  title: item.snippet.title
18726
18734
  }))));
18727
18735
  }
18728
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: YoutubeService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
18729
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: YoutubeService, providedIn: 'root' }); }
18736
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: YoutubeService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
18737
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: YoutubeService, providedIn: 'root' }); }
18730
18738
  }
18731
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: YoutubeService, decorators: [{
18739
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: YoutubeService, decorators: [{
18732
18740
  type: Injectable,
18733
18741
  args: [{
18734
18742
  providedIn: 'root'
@@ -18748,10 +18756,10 @@ class VehicleService extends RestService$1 {
18748
18756
  this.collectionClass = (Collection);
18749
18757
  this.modelClass = Vehicle;
18750
18758
  }
18751
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18752
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleService, providedIn: 'root' }); }
18759
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18760
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleService, providedIn: 'root' }); }
18753
18761
  }
18754
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleService, decorators: [{
18762
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleService, decorators: [{
18755
18763
  type: Injectable,
18756
18764
  args: [{
18757
18765
  providedIn: 'root'
@@ -18774,10 +18782,10 @@ class VehicleClaimService extends RestService$1 {
18774
18782
  this.collectionClass = VehicleClaimCollection;
18775
18783
  this.roles = [UserRolesEnum$1.WORK_TANK, UserRolesEnum$1.SOLE_TANK];
18776
18784
  }
18777
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18778
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleClaimService, providedIn: 'root' }); }
18785
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18786
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleClaimService, providedIn: 'root' }); }
18779
18787
  }
18780
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleClaimService, decorators: [{
18788
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleClaimService, decorators: [{
18781
18789
  type: Injectable,
18782
18790
  args: [{
18783
18791
  providedIn: 'root'
@@ -18795,10 +18803,10 @@ class VehicleLogbookService extends RestService$1 {
18795
18803
  this.collectionClass = VehicleLogbookCollection;
18796
18804
  this.modelClass = VehicleLogbook;
18797
18805
  }
18798
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18799
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' }); }
18806
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18807
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' }); }
18800
18808
  }
18801
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleLogbookService, decorators: [{
18809
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleLogbookService, decorators: [{
18802
18810
  type: Injectable,
18803
18811
  args: [{
18804
18812
  providedIn: 'root'
@@ -18821,10 +18829,10 @@ class AnnualClientDetailsService extends RestService$1 {
18821
18829
  this.endpointUri = 'annual-client-details';
18822
18830
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
18823
18831
  }
18824
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AnnualClientDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18825
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AnnualClientDetailsService, providedIn: 'root' }); }
18832
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AnnualClientDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18833
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AnnualClientDetailsService, providedIn: 'root' }); }
18826
18834
  }
18827
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
18835
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
18828
18836
  type: Injectable,
18829
18837
  args: [{
18830
18838
  providedIn: 'root'
@@ -18854,10 +18862,10 @@ class OccupationService {
18854
18862
  }
18855
18863
  return this.occupationsSubject.asObservable();
18856
18864
  }
18857
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: OccupationService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
18858
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: OccupationService, providedIn: 'root' }); }
18865
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: OccupationService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
18866
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: OccupationService, providedIn: 'root' }); }
18859
18867
  }
18860
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: OccupationService, decorators: [{
18868
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: OccupationService, decorators: [{
18861
18869
  type: Injectable,
18862
18870
  args: [{
18863
18871
  providedIn: 'root'
@@ -18880,10 +18888,10 @@ class ClientCouponService extends RestService$1 {
18880
18888
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
18881
18889
  this.skipErrorCodes = [404];
18882
18890
  }
18883
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientCouponService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18884
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientCouponService, providedIn: 'root' }); }
18891
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientCouponService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18892
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientCouponService, providedIn: 'root' }); }
18885
18893
  }
18886
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientCouponService, decorators: [{
18894
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientCouponService, decorators: [{
18887
18895
  type: Injectable,
18888
18896
  args: [{
18889
18897
  providedIn: 'root'
@@ -18898,10 +18906,10 @@ class CapitalLossService extends RestService$1 {
18898
18906
  this.collectionClass = (Collection);
18899
18907
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
18900
18908
  }
18901
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CapitalLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18902
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CapitalLossService, providedIn: 'root' }); }
18909
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CapitalLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18910
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CapitalLossService, providedIn: 'root' }); }
18903
18911
  }
18904
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CapitalLossService, decorators: [{
18912
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CapitalLossService, decorators: [{
18905
18913
  type: Injectable,
18906
18914
  args: [{
18907
18915
  providedIn: 'root'
@@ -18964,10 +18972,10 @@ class UserEventSettingService extends RestService$1 {
18964
18972
  this.endpointUri = 'user-event-settings';
18965
18973
  this.disabledMethods = ['postBatch', 'putBatch', 'delete', 'deleteBatch'];
18966
18974
  }
18967
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18968
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventSettingService, providedIn: 'root' }); }
18975
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18976
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventSettingService, providedIn: 'root' }); }
18969
18977
  }
18970
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventSettingService, decorators: [{
18978
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventSettingService, decorators: [{
18971
18979
  type: Injectable,
18972
18980
  args: [{
18973
18981
  providedIn: 'root'
@@ -18982,10 +18990,10 @@ class UserEventTypeService extends RestService$1 {
18982
18990
  this.endpointUri = 'user-event-types';
18983
18991
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
18984
18992
  }
18985
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18986
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventTypeService, providedIn: 'root' }); }
18993
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18994
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventTypeService, providedIn: 'root' }); }
18987
18995
  }
18988
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventTypeService, decorators: [{
18996
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventTypeService, decorators: [{
18989
18997
  type: Injectable,
18990
18998
  args: [{
18991
18999
  providedIn: 'root'
@@ -19013,10 +19021,10 @@ class UsersInviteService extends RestService {
19013
19021
  this.modelClass = RegistrationInvite;
19014
19022
  this.url = 'users/invite';
19015
19023
  }
19016
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19017
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UsersInviteService, providedIn: 'root' }); }
19024
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19025
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UsersInviteService, providedIn: 'root' }); }
19018
19026
  }
19019
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UsersInviteService, decorators: [{
19027
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UsersInviteService, decorators: [{
19020
19028
  type: Injectable,
19021
19029
  args: [{
19022
19030
  providedIn: 'root'
@@ -19124,10 +19132,10 @@ class UserService extends RestService$1 {
19124
19132
  this.setCache([user], true);
19125
19133
  }, ['post', 'put']);
19126
19134
  }
19127
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19128
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserService, providedIn: 'root' }); }
19135
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19136
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserService, providedIn: 'root' }); }
19129
19137
  }
19130
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserService, decorators: [{
19138
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserService, decorators: [{
19131
19139
  type: Injectable,
19132
19140
  args: [{
19133
19141
  providedIn: 'root'
@@ -19148,10 +19156,10 @@ class FinancialYearService {
19148
19156
  window.location.reload();
19149
19157
  }));
19150
19158
  }
19151
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19152
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearService, providedIn: 'root' }); }
19159
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19160
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearService, providedIn: 'root' }); }
19153
19161
  }
19154
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearService, decorators: [{
19162
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearService, decorators: [{
19155
19163
  type: Injectable,
19156
19164
  args: [{
19157
19165
  providedIn: 'root'
@@ -19195,10 +19203,10 @@ class MfaDetailsService extends RestService$1 {
19195
19203
  return mfaDetails;
19196
19204
  }));
19197
19205
  }
19198
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MfaDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19199
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MfaDetailsService, providedIn: 'root' }); }
19206
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MfaDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19207
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MfaDetailsService, providedIn: 'root' }); }
19200
19208
  }
19201
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MfaDetailsService, decorators: [{
19209
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MfaDetailsService, decorators: [{
19202
19210
  type: Injectable,
19203
19211
  args: [{
19204
19212
  providedIn: 'root'
@@ -19235,10 +19243,10 @@ class HoldingTradeService extends RestService$1 {
19235
19243
  }
19236
19244
  });
19237
19245
  }
19238
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19239
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeService, providedIn: 'root' }); }
19246
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19247
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeService, providedIn: 'root' }); }
19240
19248
  }
19241
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeService, decorators: [{
19249
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeService, decorators: [{
19242
19250
  type: Injectable,
19243
19251
  args: [{
19244
19252
  providedIn: 'root'
@@ -19278,10 +19286,10 @@ class HoldingTypeService extends RestService$1 {
19278
19286
  }
19279
19287
  });
19280
19288
  }
19281
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19282
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeService, providedIn: 'root' }); }
19289
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19290
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeService, providedIn: 'root' }); }
19283
19291
  }
19284
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeService, decorators: [{
19292
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeService, decorators: [{
19285
19293
  type: Injectable,
19286
19294
  args: [{
19287
19295
  providedIn: 'root'
@@ -19300,10 +19308,10 @@ class HoldingSaleService extends RestService$1 {
19300
19308
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
19301
19309
  this.roles = [UserRolesEnum$1.HOLDING_TANK];
19302
19310
  }
19303
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19304
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingSaleService, providedIn: 'root' }); }
19311
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19312
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingSaleService, providedIn: 'root' }); }
19305
19313
  }
19306
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingSaleService, decorators: [{
19314
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingSaleService, decorators: [{
19307
19315
  type: Injectable,
19308
19316
  args: [{
19309
19317
  providedIn: 'root'
@@ -19336,10 +19344,10 @@ class HoldingTradeImportService extends RestService$1 {
19336
19344
  formData.append('isTaxFree', (isTaxFree ? 1 : 0).toString());
19337
19345
  return this.importFile(formData).pipe(tap$1(() => this.toastService.success(HoldingTradeImportMessagesEnum.CREATED)));
19338
19346
  }
19339
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeImportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19340
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeImportService, providedIn: 'root' }); }
19347
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeImportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19348
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeImportService, providedIn: 'root' }); }
19341
19349
  }
19342
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeImportService, decorators: [{
19350
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeImportService, decorators: [{
19343
19351
  type: Injectable,
19344
19352
  args: [{
19345
19353
  providedIn: 'root'
@@ -19433,10 +19441,10 @@ class HoldingTypeExchangeService extends DataService {
19433
19441
  this.collectionClass = Collection;
19434
19442
  this.setCache(HoldingTypeExchanges);
19435
19443
  }
19436
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeExchangeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
19437
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeExchangeService, providedIn: 'root' }); }
19444
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeExchangeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
19445
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeExchangeService, providedIn: 'root' }); }
19438
19446
  }
19439
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeExchangeService, decorators: [{
19447
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeExchangeService, decorators: [{
19440
19448
  type: Injectable,
19441
19449
  args: [{
19442
19450
  providedIn: 'root'
@@ -19478,10 +19486,10 @@ class HoldingTaxStatementService extends RestService$1 {
19478
19486
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
19479
19487
  this.roles = [UserRolesEnum.HOLDING_TANK];
19480
19488
  }
19481
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19482
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementService, providedIn: 'root' }); }
19489
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19490
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementService, providedIn: 'root' }); }
19483
19491
  }
19484
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementService, decorators: [{
19492
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementService, decorators: [{
19485
19493
  type: Injectable,
19486
19494
  args: [{
19487
19495
  providedIn: 'root'
@@ -19505,10 +19513,10 @@ class HoldingTaxStatementPayerService extends RestService$1 {
19505
19513
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
19506
19514
  this.roles = [UserRolesEnum.HOLDING_TANK];
19507
19515
  }
19508
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementPayerService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19509
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementPayerService, providedIn: 'root' }); }
19516
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementPayerService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19517
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementPayerService, providedIn: 'root' }); }
19510
19518
  }
19511
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementPayerService, decorators: [{
19519
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementPayerService, decorators: [{
19512
19520
  type: Injectable,
19513
19521
  args: [{
19514
19522
  providedIn: 'root'
@@ -19525,10 +19533,10 @@ class HoldingCostAdjustmentService extends RestService$1 {
19525
19533
  this.roles = [UserRolesEnum.HOLDING_TANK];
19526
19534
  this.useBackendError = true;
19527
19535
  }
19528
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingCostAdjustmentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19529
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingCostAdjustmentService, providedIn: 'root' }); }
19536
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingCostAdjustmentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19537
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingCostAdjustmentService, providedIn: 'root' }); }
19530
19538
  }
19531
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingCostAdjustmentService, decorators: [{
19539
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingCostAdjustmentService, decorators: [{
19532
19540
  type: Injectable,
19533
19541
  args: [{
19534
19542
  providedIn: 'root'
@@ -19552,10 +19560,10 @@ class HomeOfficeClaimService extends RestService$1 {
19552
19560
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
19553
19561
  this.roles = [UserRolesEnum$1.WORK_TANK, UserRolesEnum$1.SOLE_TANK];
19554
19562
  }
19555
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19556
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeClaimService, providedIn: 'root' }); }
19563
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19564
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeClaimService, providedIn: 'root' }); }
19557
19565
  }
19558
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeClaimService, decorators: [{
19566
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeClaimService, decorators: [{
19559
19567
  type: Injectable,
19560
19568
  args: [{
19561
19569
  providedIn: 'root'
@@ -19583,10 +19591,10 @@ class HomeOfficeLogService extends RestService$1 {
19583
19591
  listenEvents() {
19584
19592
  this.listenCSE(HomeOfficeClaim, this.refreshCache, ['post']);
19585
19593
  }
19586
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeLogService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19587
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeLogService, providedIn: 'root' }); }
19594
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeLogService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19595
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeLogService, providedIn: 'root' }); }
19588
19596
  }
19589
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeLogService, decorators: [{
19597
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeLogService, decorators: [{
19590
19598
  type: Injectable,
19591
19599
  args: [{
19592
19600
  providedIn: 'root'
@@ -19626,10 +19634,10 @@ class AussieService extends RestService$1 {
19626
19634
  postAppointment() {
19627
19635
  return this.http.delete(`${this.environment.apiV2}/aussie/appointments`);
19628
19636
  }
19629
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19630
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieService, providedIn: 'root' }); }
19637
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19638
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieService, providedIn: 'root' }); }
19631
19639
  }
19632
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieService, decorators: [{
19640
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieService, decorators: [{
19633
19641
  type: Injectable,
19634
19642
  args: [{
19635
19643
  providedIn: 'root'
@@ -19653,10 +19661,10 @@ class SharesightDetailsService extends RestService$1 {
19653
19661
  reconnect(sharesightDetails) {
19654
19662
  return this.put(sharesightDetails, `${this.apiUrl}/${sharesightDetails.id}/reconnect`);
19655
19663
  }
19656
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19657
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightDetailsService, providedIn: 'root' }); }
19664
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19665
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightDetailsService, providedIn: 'root' }); }
19658
19666
  }
19659
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightDetailsService, decorators: [{
19667
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightDetailsService, decorators: [{
19660
19668
  type: Injectable,
19661
19669
  args: [{
19662
19670
  providedIn: 'root'
@@ -19674,10 +19682,10 @@ class SharesightPortfolioService extends RestService$1 {
19674
19682
  getExternal() {
19675
19683
  return this.fetch(`${this.apiUrl}/external`, false);
19676
19684
  }
19677
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightPortfolioService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19678
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightPortfolioService, providedIn: 'root' }); }
19685
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightPortfolioService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19686
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightPortfolioService, providedIn: 'root' }); }
19679
19687
  }
19680
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightPortfolioService, decorators: [{
19688
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightPortfolioService, decorators: [{
19681
19689
  type: Injectable,
19682
19690
  args: [{
19683
19691
  providedIn: 'root'
@@ -19759,10 +19767,10 @@ class IncomeSourceTypeService extends DataService {
19759
19767
  this.collectionClass = Collection;
19760
19768
  this.setCache(IncomeSourceTypes);
19761
19769
  }
19762
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceTypeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
19763
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceTypeService, providedIn: 'root' }); }
19770
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceTypeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
19771
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceTypeService, providedIn: 'root' }); }
19764
19772
  }
19765
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceTypeService, decorators: [{
19773
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceTypeService, decorators: [{
19766
19774
  type: Injectable,
19767
19775
  args: [{
19768
19776
  providedIn: 'root'
@@ -19776,10 +19784,10 @@ class ChartAccountsValueService extends DataService {
19776
19784
  this.collectionClass = ChartAccountsValueCollection;
19777
19785
  this.setCache(ChartAccountsValues);
19778
19786
  }
19779
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsValueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
19780
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsValueService, providedIn: 'root' }); }
19787
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsValueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
19788
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsValueService, providedIn: 'root' }); }
19781
19789
  }
19782
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsValueService, decorators: [{
19790
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsValueService, decorators: [{
19783
19791
  type: Injectable,
19784
19792
  args: [{
19785
19793
  providedIn: 'root'
@@ -21752,10 +21760,10 @@ class TaxReturnItemService extends DataService {
21752
21760
  this.collectionClass = Collection;
21753
21761
  this.setCache(TaxReturnItems);
21754
21762
  }
21755
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReturnItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
21756
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReturnItemService, providedIn: 'root' }); }
21763
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReturnItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
21764
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReturnItemService, providedIn: 'root' }); }
21757
21765
  }
21758
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReturnItemService, decorators: [{
21766
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReturnItemService, decorators: [{
21759
21767
  type: Injectable,
21760
21768
  args: [{
21761
21769
  providedIn: 'root'
@@ -21936,10 +21944,10 @@ class CurrencyService extends DataService {
21936
21944
  this.collectionClass = Collection;
21937
21945
  this.setCache(Currencies);
21938
21946
  }
21939
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrencyService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
21940
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrencyService, providedIn: 'root' }); }
21947
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrencyService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
21948
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrencyService, providedIn: 'root' }); }
21941
21949
  }
21942
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrencyService, decorators: [{
21950
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrencyService, decorators: [{
21943
21951
  type: Injectable,
21944
21952
  args: [{
21945
21953
  providedIn: 'root'
@@ -23450,10 +23458,10 @@ class CountryService extends DataService {
23450
23458
  this.collectionClass = Collection;
23451
23459
  this.setCache(countries);
23452
23460
  }
23453
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CountryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
23454
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CountryService, providedIn: 'root' }); }
23461
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CountryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
23462
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CountryService, providedIn: 'root' }); }
23455
23463
  }
23456
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CountryService, decorators: [{
23464
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CountryService, decorators: [{
23457
23465
  type: Injectable,
23458
23466
  args: [{
23459
23467
  providedIn: 'root'
@@ -23468,10 +23476,10 @@ class SetupItemService extends RestService$1 {
23468
23476
  this.collectionClass = AccountSetupItemCollection;
23469
23477
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
23470
23478
  }
23471
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SetupItemService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
23472
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SetupItemService, providedIn: 'root' }); }
23479
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SetupItemService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
23480
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SetupItemService, providedIn: 'root' }); }
23473
23481
  }
23474
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SetupItemService, decorators: [{
23482
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SetupItemService, decorators: [{
23475
23483
  type: Injectable,
23476
23484
  args: [{
23477
23485
  providedIn: 'root'
@@ -23661,10 +23669,10 @@ class AccountSetupService {
23661
23669
  getSharesightDetails(importEnabled) {
23662
23670
  return this.sharesightDetailsService.getArray().pipe(map(details => details.filter(detail => importEnabled ? detail.importEnabled : detail.exportEnabled)));
23663
23671
  }
23664
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AccountSetupService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
23665
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AccountSetupService, providedIn: 'root' }); }
23672
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AccountSetupService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
23673
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AccountSetupService, providedIn: 'root' }); }
23666
23674
  }
23667
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AccountSetupService, decorators: [{
23675
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AccountSetupService, decorators: [{
23668
23676
  type: Injectable,
23669
23677
  args: [{
23670
23678
  providedIn: 'root'
@@ -23679,10 +23687,10 @@ class AdblockDetectorService {
23679
23687
  constructor() {
23680
23688
  checkAdBlock().then((isDetected) => this.isDetected = isDetected);
23681
23689
  }
23682
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdblockDetectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
23683
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdblockDetectorService, providedIn: 'root' }); }
23690
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdblockDetectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
23691
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdblockDetectorService, providedIn: 'root' }); }
23684
23692
  }
23685
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdblockDetectorService, decorators: [{
23693
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdblockDetectorService, decorators: [{
23686
23694
  type: Injectable,
23687
23695
  args: [{
23688
23696
  providedIn: 'root'
@@ -23725,10 +23733,10 @@ class UserSwitcherService {
23725
23733
  window.location.replace('/client/dashboard');
23726
23734
  });
23727
23735
  }
23728
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
23729
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherService, providedIn: 'root' }); }
23736
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
23737
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherService, providedIn: 'root' }); }
23730
23738
  }
23731
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherService, decorators: [{
23739
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherService, decorators: [{
23732
23740
  type: Injectable,
23733
23741
  args: [{
23734
23742
  providedIn: 'root'
@@ -23772,10 +23780,10 @@ class AssetsService {
23772
23780
  delete(entityId, asset) {
23773
23781
  return this.http.delete(`${this.environment.apiV2}/${asset.entityType}/${entityId}/${asset.type}/${asset.id}`);
23774
23782
  }
23775
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AssetsService, deps: [{ token: i1.HttpClient }, { token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
23776
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AssetsService, providedIn: 'root' }); }
23783
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AssetsService, deps: [{ token: i1.HttpClient }, { token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
23784
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AssetsService, providedIn: 'root' }); }
23777
23785
  }
23778
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AssetsService, decorators: [{
23786
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AssetsService, decorators: [{
23779
23787
  type: Injectable,
23780
23788
  args: [{
23781
23789
  providedIn: 'root'
@@ -23806,10 +23814,10 @@ class BankAccountCalculationService {
23806
23814
  });
23807
23815
  return total;
23808
23816
  }
23809
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
23810
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' }); }
23817
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
23818
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' }); }
23811
23819
  }
23812
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountCalculationService, decorators: [{
23820
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountCalculationService, decorators: [{
23813
23821
  type: Injectable,
23814
23822
  args: [{
23815
23823
  providedIn: 'root'
@@ -23846,10 +23854,10 @@ class CorelogicService {
23846
23854
  return throwError(() => error);
23847
23855
  }));
23848
23856
  }
23849
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
23850
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicService, providedIn: 'root' }); }
23857
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
23858
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicService, providedIn: 'root' }); }
23851
23859
  }
23852
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicService, decorators: [{
23860
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicService, decorators: [{
23853
23861
  type: Injectable,
23854
23862
  args: [{
23855
23863
  providedIn: 'root'
@@ -23867,10 +23875,10 @@ class GooglePlaceService {
23867
23875
  getSuggestions(search, country = 'au') {
23868
23876
  return this.http.get(`${this.environment.apiV2}/google-place/suggestions`, { params: { search, country } }).pipe(map((response) => response.map((item) => plainToClass(AddressSuggestion, item))));
23869
23877
  }
23870
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GooglePlaceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
23871
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GooglePlaceService, providedIn: 'root' }); }
23878
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GooglePlaceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
23879
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GooglePlaceService, providedIn: 'root' }); }
23872
23880
  }
23873
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GooglePlaceService, decorators: [{
23881
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GooglePlaceService, decorators: [{
23874
23882
  type: Injectable,
23875
23883
  args: [{
23876
23884
  providedIn: 'root'
@@ -23900,10 +23908,10 @@ class ExportFormatterService {
23900
23908
  }
23901
23909
  }));
23902
23910
  }
23903
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExportFormatterService, deps: [{ token: i1$1.CurrencyPipe }, { token: i1$1.PercentPipe }, { token: i1$1.DatePipe }], target: i0.ɵɵFactoryTarget.Injectable }); }
23904
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExportFormatterService, providedIn: 'root' }); }
23911
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExportFormatterService, deps: [{ token: i1$1.CurrencyPipe }, { token: i1$1.PercentPipe }, { token: i1$1.DatePipe }], target: i0.ɵɵFactoryTarget.Injectable }); }
23912
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExportFormatterService, providedIn: 'root' }); }
23905
23913
  }
23906
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExportFormatterService, decorators: [{
23914
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExportFormatterService, decorators: [{
23907
23915
  type: Injectable,
23908
23916
  args: [{
23909
23917
  providedIn: 'root'
@@ -23923,10 +23931,10 @@ class HeaderTitleService {
23923
23931
  return route;
23924
23932
  }), filter((route) => route.outlet === 'primary'), mergeMap((route) => route.data));
23925
23933
  }
23926
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HeaderTitleService, deps: [{ token: i4.Router }, { token: i4.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Injectable }); }
23927
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HeaderTitleService, providedIn: 'root' }); }
23934
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HeaderTitleService, deps: [{ token: i4.Router }, { token: i4.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Injectable }); }
23935
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HeaderTitleService, providedIn: 'root' }); }
23928
23936
  }
23929
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HeaderTitleService, decorators: [{
23937
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HeaderTitleService, decorators: [{
23930
23938
  type: Injectable,
23931
23939
  args: [{
23932
23940
  providedIn: 'root'
@@ -23959,10 +23967,10 @@ class IntercomService {
23959
23967
  const connectionCredentials = this.initUser(user);
23960
23968
  window.Intercom('boot', connectionCredentials);
23961
23969
  }
23962
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
23963
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IntercomService, providedIn: 'root' }); }
23970
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
23971
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IntercomService, providedIn: 'root' }); }
23964
23972
  }
23965
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IntercomService, decorators: [{
23973
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IntercomService, decorators: [{
23966
23974
  type: Injectable,
23967
23975
  args: [{
23968
23976
  providedIn: 'root'
@@ -24078,10 +24086,10 @@ class PdfFromDomElementService {
24078
24086
  idoc.head.appendChild(clone);
24079
24087
  });
24080
24088
  }
24081
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24082
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' }); }
24089
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24090
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' }); }
24083
24091
  }
24084
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDomElementService, decorators: [{
24092
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDomElementService, decorators: [{
24085
24093
  type: Injectable,
24086
24094
  args: [{
24087
24095
  providedIn: 'root'
@@ -24197,10 +24205,10 @@ class PdfFromTableService {
24197
24205
  startY: lastTableCoords + FILE_SETTINGS.titleCoords.top / 2,
24198
24206
  });
24199
24207
  }
24200
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24201
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromTableService, providedIn: 'root' }); }
24208
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24209
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromTableService, providedIn: 'root' }); }
24202
24210
  }
24203
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromTableService, decorators: [{
24211
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromTableService, decorators: [{
24204
24212
  type: Injectable,
24205
24213
  args: [{
24206
24214
  providedIn: 'root'
@@ -24242,10 +24250,10 @@ class PdfFromDataTableService extends PdfFromTableService {
24242
24250
  });
24243
24251
  return pdf;
24244
24252
  }
24245
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable }); }
24246
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' }); }
24253
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable }); }
24254
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' }); }
24247
24255
  }
24248
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDataTableService, decorators: [{
24256
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDataTableService, decorators: [{
24249
24257
  type: Injectable,
24250
24258
  args: [{
24251
24259
  providedIn: 'root'
@@ -24296,10 +24304,10 @@ class PdfFromHtmlTableService extends PdfFromTableService {
24296
24304
  Array.from(caption.children).map((node) => node.textContent).join('\n') :
24297
24305
  caption.innerText;
24298
24306
  }
24299
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
24300
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' }); }
24307
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
24308
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' }); }
24301
24309
  }
24302
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
24310
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
24303
24311
  type: Injectable,
24304
24312
  args: [{
24305
24313
  providedIn: 'root'
@@ -24323,10 +24331,10 @@ class PreloaderService {
24323
24331
  activePreloaders = activePreloaders.filter((preloader) => preloader !== endpoint);
24324
24332
  this.activePreloaders.next(activePreloaders);
24325
24333
  }
24326
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24327
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderService, providedIn: 'root' }); }
24334
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24335
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderService, providedIn: 'root' }); }
24328
24336
  }
24329
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderService, decorators: [{
24337
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderService, decorators: [{
24330
24338
  type: Injectable,
24331
24339
  args: [{
24332
24340
  providedIn: 'root'
@@ -24352,10 +24360,10 @@ class EquityPositionChartService {
24352
24360
  }))
24353
24361
  }))));
24354
24362
  }
24355
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EquityPositionChartService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
24356
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' }); }
24363
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EquityPositionChartService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
24364
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' }); }
24357
24365
  }
24358
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EquityPositionChartService, decorators: [{
24366
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EquityPositionChartService, decorators: [{
24359
24367
  type: Injectable,
24360
24368
  args: [{
24361
24369
  providedIn: 'root'
@@ -24518,10 +24526,10 @@ class PropertyCalculationService {
24518
24526
  return new Badge('Monitoring performance');
24519
24527
  }
24520
24528
  }
24521
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24522
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' }); }
24529
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24530
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' }); }
24523
24531
  }
24524
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCalculationService, decorators: [{
24532
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCalculationService, decorators: [{
24525
24533
  type: Injectable,
24526
24534
  args: [{
24527
24535
  providedIn: 'root'
@@ -24579,10 +24587,10 @@ class PropertyTransactionReportService {
24579
24587
  getDepreciations() {
24580
24588
  return this.depreciationService.get().pipe(map((depreciations) => depreciations.getByChartAccountsCategories(CHART_ACCOUNTS_CATEGORIES.property)));
24581
24589
  }
24582
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyTransactionReportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24583
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' }); }
24590
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyTransactionReportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24591
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' }); }
24584
24592
  }
24585
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
24593
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
24586
24594
  type: Injectable,
24587
24595
  args: [{
24588
24596
  providedIn: 'root'
@@ -24602,10 +24610,10 @@ class CurrentFirmBranchService {
24602
24610
  set(firmBranches) {
24603
24611
  this.firmBranchIds$.next(firmBranches.map(branch => branch.id));
24604
24612
  }
24605
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrentFirmBranchService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24606
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrentFirmBranchService, providedIn: 'root' }); }
24613
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrentFirmBranchService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24614
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrentFirmBranchService, providedIn: 'root' }); }
24607
24615
  }
24608
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrentFirmBranchService, decorators: [{
24616
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrentFirmBranchService, decorators: [{
24609
24617
  type: Injectable,
24610
24618
  args: [{
24611
24619
  providedIn: 'root'
@@ -24700,10 +24708,10 @@ class XlsxService {
24700
24708
  const data = new Blob([excelFile], { type: EXCEL_TYPE });
24701
24709
  FileSaver.saveAs(data, `${fileName}.xlsx`);
24702
24710
  }
24703
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24704
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: XlsxService, providedIn: 'root' }); }
24711
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24712
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: XlsxService, providedIn: 'root' }); }
24705
24713
  }
24706
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: XlsxService, decorators: [{
24714
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: XlsxService, decorators: [{
24707
24715
  type: Injectable,
24708
24716
  args: [{
24709
24717
  providedIn: 'root'
@@ -24737,10 +24745,10 @@ class CorelogicInterceptor {
24737
24745
  }
24738
24746
  });
24739
24747
  }
24740
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicInterceptor, deps: [{ token: CorelogicService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
24741
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicInterceptor }); }
24748
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicInterceptor, deps: [{ token: CorelogicService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
24749
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicInterceptor }); }
24742
24750
  }
24743
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicInterceptor, decorators: [{
24751
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicInterceptor, decorators: [{
24744
24752
  type: Injectable
24745
24753
  }], ctorParameters: () => [{ type: CorelogicService }, { type: undefined, decorators: [{
24746
24754
  type: Inject,
@@ -24776,10 +24784,10 @@ class FinancialYearInterceptor {
24776
24784
  }
24777
24785
  return next.handle(clonedReq);
24778
24786
  }
24779
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
24780
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearInterceptor }); }
24787
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
24788
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearInterceptor }); }
24781
24789
  }
24782
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
24790
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
24783
24791
  type: Injectable
24784
24792
  }], ctorParameters: () => [{ type: undefined, decorators: [{
24785
24793
  type: Inject,
@@ -24813,10 +24821,10 @@ class UserSwitcherInterceptor {
24813
24821
  intercept(request, next) {
24814
24822
  return next.handle(this.switch(request, this.userSwitcherService.get()));
24815
24823
  }
24816
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherInterceptor, deps: [{ token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
24817
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherInterceptor }); }
24824
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherInterceptor, deps: [{ token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
24825
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherInterceptor }); }
24818
24826
  }
24819
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
24827
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
24820
24828
  type: Injectable
24821
24829
  }], ctorParameters: () => [{ type: UserSwitcherService }, { type: undefined, decorators: [{
24822
24830
  type: Inject,
@@ -25193,10 +25201,10 @@ class PreloaderInterceptor {
25193
25201
  findEndpoint(requestPath) {
25194
25202
  return Object.values(ENDPOINTS).find((endpoint) => endpoint.test(requestPath));
25195
25203
  }
25196
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable }); }
25197
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderInterceptor }); }
25204
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable }); }
25205
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderInterceptor }); }
25198
25206
  }
25199
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderInterceptor, decorators: [{
25207
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderInterceptor, decorators: [{
25200
25208
  type: Injectable
25201
25209
  }], ctorParameters: () => [{ type: PreloaderService }] });
25202
25210
 
@@ -25231,10 +25239,10 @@ class RewardfulInterceptor {
25231
25239
  && (window['Rewardful'].referral || window['Rewardful'].coupon?.id)
25232
25240
  && registrationUrls.some(registrationUrl => request.url.includes(registrationUrl));
25233
25241
  }
25234
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RewardfulInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
25235
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RewardfulInterceptor }); }
25242
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RewardfulInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
25243
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RewardfulInterceptor }); }
25236
25244
  }
25237
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RewardfulInterceptor, decorators: [{
25245
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RewardfulInterceptor, decorators: [{
25238
25246
  type: Injectable
25239
25247
  }], ctorParameters: () => [{ type: undefined, decorators: [{
25240
25248
  type: Inject,
@@ -25263,10 +25271,10 @@ class AussieInterceptor {
25263
25271
  }
25264
25272
  });
25265
25273
  }
25266
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieInterceptor, deps: [{ token: AussieService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
25267
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieInterceptor }); }
25274
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieInterceptor, deps: [{ token: AussieService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
25275
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieInterceptor }); }
25268
25276
  }
25269
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieInterceptor, decorators: [{
25277
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieInterceptor, decorators: [{
25270
25278
  type: Injectable
25271
25279
  }], ctorParameters: () => [{ type: AussieService }, { type: undefined, decorators: [{
25272
25280
  type: Inject,
@@ -25274,13 +25282,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImpor
25274
25282
  }] }] });
25275
25283
 
25276
25284
  const ADBLOCK_ERROR_HTML = new InjectionToken('ADBLOCK_ERROR_HTML');
25277
- const ADBLOCK_ERROR_HTML_VALUE = `
25278
- <div class="text-center">
25279
- <strong>Action needed - Your adblocker is blocking CoreLogic</strong>
25280
- To add a property in TaxTank we need to fetch data from CoreLogic, however your ad blocker is getting in the way.
25281
- Please disable your adblocker or whitelist TaxTank to continue.
25282
- <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>
25283
- </div>
25285
+ const ADBLOCK_ERROR_HTML_VALUE = `
25286
+ <div class="text-center">
25287
+ <strong>Action needed - Your adblocker is blocking CoreLogic</strong>
25288
+ To add a property in TaxTank we need to fetch data from CoreLogic, however your ad blocker is getting in the way.
25289
+ Please disable your adblocker or whitelist TaxTank to continue.
25290
+ <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>
25291
+ </div>
25284
25292
  `;
25285
25293
 
25286
25294
  /**
@@ -25305,10 +25313,10 @@ class AdBlockErrorInterceptor {
25305
25313
  }
25306
25314
  return next.handle(request);
25307
25315
  }
25308
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdBlockErrorInterceptor, deps: [{ token: 'environment' }, { token: AdblockDetectorService }, { token: ToastService }, { token: ADBLOCK_ERROR_HTML }], target: i0.ɵɵFactoryTarget.Injectable }); }
25309
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdBlockErrorInterceptor }); }
25316
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdBlockErrorInterceptor, deps: [{ token: 'environment' }, { token: AdblockDetectorService }, { token: ToastService }, { token: ADBLOCK_ERROR_HTML }], target: i0.ɵɵFactoryTarget.Injectable }); }
25317
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdBlockErrorInterceptor }); }
25310
25318
  }
25311
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdBlockErrorInterceptor, decorators: [{
25319
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdBlockErrorInterceptor, decorators: [{
25312
25320
  type: Injectable
25313
25321
  }], ctorParameters: () => [{ type: undefined, decorators: [{
25314
25322
  type: Inject,
@@ -25319,9 +25327,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImpor
25319
25327
  }] }] });
25320
25328
 
25321
25329
  class InterceptorsModule {
25322
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
25323
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule }); }
25324
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, providers: [
25330
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
25331
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule }); }
25332
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, providers: [
25325
25333
  {
25326
25334
  provide: HTTP_INTERCEPTORS,
25327
25335
  useClass: CorelogicInterceptor,
@@ -25364,7 +25372,7 @@ class InterceptorsModule {
25364
25372
  }
25365
25373
  ] }); }
25366
25374
  }
25367
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, decorators: [{
25375
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, decorators: [{
25368
25376
  type: NgModule,
25369
25377
  args: [{
25370
25378
  providers: [
@@ -25416,13 +25424,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImpor
25416
25424
  * https://angular.io/guide/creating-libraries
25417
25425
  */
25418
25426
  class CoreModule {
25419
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
25420
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
25427
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
25428
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
25421
25429
  InterceptorsModule] }); }
25422
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
25430
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
25423
25431
  InterceptorsModule] }); }
25424
25432
  }
25425
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CoreModule, decorators: [{
25433
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, decorators: [{
25426
25434
  type: NgModule,
25427
25435
  args: [{
25428
25436
  declarations: [],
@@ -25442,10 +25450,10 @@ class AppCurrencyPipe extends CurrencyPipe {
25442
25450
  digitsInfo = digitsInfo ?? '1.0-' + (value.toString().match(/[1-9]/)?.index || 2);
25443
25451
  return super.transform(value, currencyCode, display, digitsInfo, locale);
25444
25452
  }
25445
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AppCurrencyPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
25446
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: AppCurrencyPipe, isStandalone: true, name: "appCurrency" }); }
25453
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppCurrencyPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
25454
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: AppCurrencyPipe, isStandalone: true, name: "appCurrency" }); }
25447
25455
  }
25448
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AppCurrencyPipe, decorators: [{
25456
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppCurrencyPipe, decorators: [{
25449
25457
  type: Pipe,
25450
25458
  args: [{
25451
25459
  name: 'appCurrency',
@@ -25460,10 +25468,10 @@ class AppPercentPipe {
25460
25468
  transform(value, total, floor) {
25461
25469
  return this.percentagePipe.transform(value, total, floor) + '%';
25462
25470
  }
25463
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AppPercentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
25464
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: AppPercentPipe, isStandalone: true, name: "percentage" }); }
25471
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppPercentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
25472
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: AppPercentPipe, isStandalone: true, name: "percentage" }); }
25465
25473
  }
25466
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AppPercentPipe, decorators: [{
25474
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppPercentPipe, decorators: [{
25467
25475
  type: Pipe,
25468
25476
  args: [{
25469
25477
  name: 'percentage',
@@ -25490,10 +25498,10 @@ class RelativeDatePipe {
25490
25498
  return this.datePipe.transform(date.toDate(), DateFormatsEnum.DATE_SLASH);
25491
25499
  }
25492
25500
  }
25493
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RelativeDatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
25494
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: RelativeDatePipe, isStandalone: true, name: "relativeDate" }); }
25501
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RelativeDatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
25502
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: RelativeDatePipe, isStandalone: true, name: "relativeDate" }); }
25495
25503
  }
25496
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RelativeDatePipe, decorators: [{
25504
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RelativeDatePipe, decorators: [{
25497
25505
  type: Pipe,
25498
25506
  args: [{
25499
25507
  name: 'relativeDate',
@@ -25508,10 +25516,10 @@ class SafeUrlPipe {
25508
25516
  transform(url) {
25509
25517
  return this.sanitizer.bypassSecurityTrustResourceUrl(url);
25510
25518
  }
25511
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SafeUrlPipe, deps: [{ token: i1$2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
25512
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
25519
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SafeUrlPipe, deps: [{ token: i1$2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
25520
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
25513
25521
  }
25514
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SafeUrlPipe, decorators: [{
25522
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SafeUrlPipe, decorators: [{
25515
25523
  type: Pipe,
25516
25524
  args: [{
25517
25525
  name: 'safeUrl',
@@ -25864,10 +25872,10 @@ class BusinessResolver {
25864
25872
  resolve() {
25865
25873
  return this.soleDetailsService.getFirst();
25866
25874
  }
25867
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
25868
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessResolver, providedIn: 'root' }); }
25875
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
25876
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessResolver, providedIn: 'root' }); }
25869
25877
  }
25870
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessResolver, decorators: [{
25878
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessResolver, decorators: [{
25871
25879
  type: Injectable,
25872
25880
  args: [{ providedIn: 'root' }]
25873
25881
  }], ctorParameters: () => [{ type: SoleDetailsService }] });
@@ -25879,10 +25887,10 @@ class SoleDetailsResolver {
25879
25887
  resolve() {
25880
25888
  return this.soleDetails.getFirst();
25881
25889
  }
25882
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
25883
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsResolver, providedIn: 'root' }); }
25890
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
25891
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsResolver, providedIn: 'root' }); }
25884
25892
  }
25885
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsResolver, decorators: [{
25893
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsResolver, decorators: [{
25886
25894
  type: Injectable,
25887
25895
  args: [{ providedIn: 'root' }]
25888
25896
  }], ctorParameters: () => [{ type: SoleDetailsService }] });
@@ -26633,10 +26641,10 @@ class UniqueEmailValidator {
26633
26641
  validate(control) {
26634
26642
  return this.userService.search(control.value).pipe(map(user => user ? { emailIsUsed: true } : null));
26635
26643
  }
26636
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UniqueEmailValidator, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
26637
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UniqueEmailValidator, providedIn: 'root' }); }
26644
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UniqueEmailValidator, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
26645
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UniqueEmailValidator, providedIn: 'root' }); }
26638
26646
  }
26639
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UniqueEmailValidator, decorators: [{
26647
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UniqueEmailValidator, decorators: [{
26640
26648
  type: Injectable,
26641
26649
  args: [{ providedIn: 'root' }]
26642
26650
  }], ctorParameters: () => [{ type: UserService }] });
@@ -27149,10 +27157,10 @@ class ClientMovementForm extends AbstractForm {
27149
27157
  firmBranch: new FormControl(clientMovement.firmBranch, [Validators.required]),
27150
27158
  }, clientMovement);
27151
27159
  }
27152
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementForm, deps: [{ token: ClientMovement }], target: i0.ɵɵFactoryTarget.Injectable }); }
27153
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementForm, providedIn: 'root' }); }
27160
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementForm, deps: [{ token: ClientMovement }], target: i0.ɵɵFactoryTarget.Injectable }); }
27161
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementForm, providedIn: 'root' }); }
27154
27162
  }
27155
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementForm, decorators: [{
27163
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementForm, decorators: [{
27156
27164
  type: Injectable,
27157
27165
  args: [{
27158
27166
  providedIn: 'root'
@@ -27165,10 +27173,10 @@ class EmployeeDetailsForm extends AbstractForm {
27165
27173
  firmBranches: new FormControl(employeeDetails.firmBranches, [Validators.required]),
27166
27174
  }, employeeDetails);
27167
27175
  }
27168
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeDetailsForm, deps: [{ token: EmployeeDetails }], target: i0.ɵɵFactoryTarget.Injectable }); }
27169
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeDetailsForm, providedIn: 'root' }); }
27176
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeDetailsForm, deps: [{ token: EmployeeDetails }], target: i0.ɵɵFactoryTarget.Injectable }); }
27177
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeDetailsForm, providedIn: 'root' }); }
27170
27178
  }
27171
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeDetailsForm, decorators: [{
27179
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeDetailsForm, decorators: [{
27172
27180
  type: Injectable,
27173
27181
  args: [{
27174
27182
  providedIn: 'root'
@@ -29153,19 +29161,20 @@ class VehicleForm extends AbstractForm {
29153
29161
  */
29154
29162
  class VehicleClaimForm extends AbstractForm {
29155
29163
  constructor(vehicleClaim, isBestPeriodExist) {
29164
+ const isManual = isBestPeriodExist ? vehicleClaim.isManual : true;
29156
29165
  super({
29157
29166
  method: new FormControl(vehicleClaim.method, Validators.required),
29158
29167
  isManual: new FormControl({
29159
- value: vehicleClaim.isManual,
29168
+ value: isManual,
29160
29169
  disabled: !isBestPeriodExist
29161
29170
  }),
29162
29171
  kilometers: new FormControl({
29163
29172
  value: vehicleClaim.kilometers,
29164
- disabled: !vehicleClaim.isManual || vehicleClaim.isLogbookMethod()
29173
+ disabled: !isManual || vehicleClaim.isLogbookMethod()
29165
29174
  }),
29166
29175
  workUsage: new FormControl({
29167
29176
  value: vehicleClaim.workUsage,
29168
- disabled: !vehicleClaim.isManual || vehicleClaim.isKmsMethod()
29177
+ disabled: !isManual || vehicleClaim.isKmsMethod()
29169
29178
  })
29170
29179
  }, vehicleClaim);
29171
29180
  }