taxtank-core 3.0.6 → 3.0.7

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
  }
@@ -13247,10 +13249,10 @@ class EventDispatcherService {
13247
13249
  dispatch2(event) {
13248
13250
  this.eventSubject2.next(event);
13249
13251
  }
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' }); }
13252
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
13253
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EventDispatcherService, providedIn: 'root' }); }
13252
13254
  }
13253
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EventDispatcherService, decorators: [{
13255
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EventDispatcherService, decorators: [{
13254
13256
  type: Injectable,
13255
13257
  args: [{
13256
13258
  providedIn: 'root'
@@ -13285,10 +13287,10 @@ class SseService {
13285
13287
  })
13286
13288
  .pipe(map((messageEvent) => JSON.parse(messageEvent.data)));
13287
13289
  }
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' }); }
13290
+ 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 }); }
13291
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SseService, providedIn: 'root' }); }
13290
13292
  }
13291
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SseService, decorators: [{
13293
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SseService, decorators: [{
13292
13294
  type: Injectable,
13293
13295
  args: [{
13294
13296
  providedIn: 'root'
@@ -13376,10 +13378,10 @@ class DataService {
13376
13378
  setCache(data) {
13377
13379
  this.cache = this.createCollectionInstance(this.collectionClass, data);
13378
13380
  }
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' }); }
13381
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DataService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
13382
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DataService, providedIn: 'root' }); }
13381
13383
  }
13382
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DataService, decorators: [{
13384
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DataService, decorators: [{
13383
13385
  type: Injectable,
13384
13386
  args: [{
13385
13387
  providedIn: 'root'
@@ -13447,10 +13449,10 @@ class ToastService {
13447
13449
  message,
13448
13450
  }));
13449
13451
  }
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' }); }
13452
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
13453
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ToastService, providedIn: 'root' }); }
13452
13454
  }
13453
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ToastService, decorators: [{
13455
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ToastService, decorators: [{
13454
13456
  type: Injectable,
13455
13457
  args: [{
13456
13458
  providedIn: 'root'
@@ -13843,10 +13845,10 @@ let RestService$1 = class RestService extends DataService {
13843
13845
  this.handleResponse([change.model], change.method);
13844
13846
  });
13845
13847
  }
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' }); }
13848
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
13849
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, providedIn: 'root' }); }
13848
13850
  };
13849
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService$1, decorators: [{
13851
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService$1, decorators: [{
13850
13852
  type: Injectable,
13851
13853
  args: [{
13852
13854
  providedIn: 'root'
@@ -13989,10 +13991,10 @@ class BankAccountService extends RestService$1 {
13989
13991
  }
13990
13992
  });
13991
13993
  }
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' }); }
13994
+ 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 }); }
13995
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountService, providedIn: 'root' }); }
13994
13996
  }
13995
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountService, decorators: [{
13997
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountService, decorators: [{
13996
13998
  type: Injectable,
13997
13999
  args: [{
13998
14000
  providedIn: 'root'
@@ -14115,10 +14117,10 @@ class BankConnectionService extends RestService$1 {
14115
14117
  }
14116
14118
  });
14117
14119
  }
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' }); }
14120
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankConnectionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14121
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankConnectionService, providedIn: 'root' }); }
14120
14122
  }
14121
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankConnectionService, decorators: [{
14123
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankConnectionService, decorators: [{
14122
14124
  type: Injectable,
14123
14125
  args: [{
14124
14126
  providedIn: 'root'
@@ -14164,10 +14166,10 @@ class BankTransactionService extends RestService$1 {
14164
14166
  }
14165
14167
  });
14166
14168
  }
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' }); }
14169
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14170
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionService, providedIn: 'root' }); }
14169
14171
  }
14170
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionService, decorators: [{
14172
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionService, decorators: [{
14171
14173
  type: Injectable,
14172
14174
  args: [{
14173
14175
  providedIn: 'root'
@@ -14196,10 +14198,10 @@ class BankTransactionImportService extends RestService$1 {
14196
14198
  formData.append('file', file);
14197
14199
  return this.importFile(formData, `${this.environment.apiV2}/bank-accounts/${bankAccountId}/bank-transaction-imports`);
14198
14200
  }
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' }); }
14201
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionImportService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14202
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionImportService, providedIn: 'root' }); }
14201
14203
  }
14202
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionImportService, decorators: [{
14204
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionImportService, decorators: [{
14203
14205
  type: Injectable,
14204
14206
  args: [{
14205
14207
  providedIn: 'root'
@@ -14244,10 +14246,10 @@ class BasiqTokenService extends RestService$1 {
14244
14246
  const now = new Date().getTime();
14245
14247
  return new BasiqToken(tokenResponse['access_token'], new Date(now + tokenResponse['expires_in'] * 1000));
14246
14248
  }
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' }); }
14249
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14250
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenService, providedIn: 'root' }); }
14249
14251
  }
14250
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqTokenService, decorators: [{
14252
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenService, decorators: [{
14251
14253
  type: Injectable,
14252
14254
  args: [{
14253
14255
  providedIn: 'root'
@@ -14289,10 +14291,10 @@ class BasiqService extends RestService$1 {
14289
14291
  }
14290
14292
  });
14291
14293
  }
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' }); }
14294
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14295
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, providedIn: 'root' }); }
14294
14296
  }
14295
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqService, decorators: [{
14297
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, decorators: [{
14296
14298
  type: Injectable,
14297
14299
  args: [{
14298
14300
  providedIn: 'root'
@@ -14355,10 +14357,10 @@ class MixpanelService {
14355
14357
  }
14356
14358
  mixpanel['track_pageview']();
14357
14359
  }
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' }); }
14360
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MixpanelService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14361
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MixpanelService, providedIn: 'root' }); }
14360
14362
  }
14361
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MixpanelService, decorators: [{
14363
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MixpanelService, decorators: [{
14362
14364
  type: Injectable,
14363
14365
  args: [{
14364
14366
  providedIn: 'root'
@@ -14425,10 +14427,10 @@ class JwtService extends JwtHelperService {
14425
14427
  isMe(userId) {
14426
14428
  return this.decode().id === userId;
14427
14429
  }
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' }); }
14430
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14431
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtService, providedIn: 'root' }); }
14430
14432
  }
14431
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtService, decorators: [{
14433
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtService, decorators: [{
14432
14434
  type: Injectable,
14433
14435
  args: [{
14434
14436
  providedIn: 'root'
@@ -14469,10 +14471,10 @@ class AuthService {
14469
14471
  this.jwtService.destroyTokens();
14470
14472
  location.replace(url);
14471
14473
  }
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' }); }
14474
+ 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 }); }
14475
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AuthService, providedIn: 'root' }); }
14474
14476
  }
14475
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AuthService, decorators: [{
14477
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AuthService, decorators: [{
14476
14478
  type: Injectable,
14477
14479
  args: [{
14478
14480
  providedIn: 'root'
@@ -14609,10 +14611,10 @@ class JwtInterceptor {
14609
14611
  // });
14610
14612
  });
14611
14613
  }
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 }); }
14614
+ 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 }); }
14615
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtInterceptor }); }
14614
14616
  }
14615
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtInterceptor, decorators: [{
14617
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtInterceptor, decorators: [{
14616
14618
  type: Injectable
14617
14619
  }], ctorParameters: () => [{ type: JwtService }, { type: AuthService }, { type: undefined, decorators: [{
14618
14620
  type: Inject,
@@ -14620,9 +14622,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImpor
14620
14622
  }] }] });
14621
14623
 
14622
14624
  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: [
14625
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
14626
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule }); }
14627
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, providers: [
14626
14628
  {
14627
14629
  provide: HTTP_INTERCEPTORS,
14628
14630
  useClass: JwtInterceptor,
@@ -14630,7 +14632,7 @@ let InterceptorsModule$1 = class InterceptorsModule {
14630
14632
  }
14631
14633
  ] }); }
14632
14634
  };
14633
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule$1, decorators: [{
14635
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule$1, decorators: [{
14634
14636
  type: NgModule,
14635
14637
  args: [{
14636
14638
  providers: [
@@ -14660,13 +14662,13 @@ class CommonModule {
14660
14662
  ]
14661
14663
  };
14662
14664
  }
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,
14665
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
14666
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
14665
14667
  InterceptorsModule$1] }); }
14666
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
14668
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
14667
14669
  InterceptorsModule$1] }); }
14668
14670
  }
14669
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CommonModule, decorators: [{
14671
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, decorators: [{
14670
14672
  type: NgModule,
14671
14673
  args: [{
14672
14674
  declarations: [],
@@ -14741,10 +14743,10 @@ class BasiqUserService extends RestService$1 {
14741
14743
  window.location.replace(url);
14742
14744
  }));
14743
14745
  }
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' }); }
14746
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqUserService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14747
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqUserService, providedIn: 'root' }); }
14746
14748
  }
14747
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqUserService, decorators: [{
14749
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqUserService, decorators: [{
14748
14750
  type: Injectable,
14749
14751
  args: [{
14750
14752
  providedIn: 'root'
@@ -14762,10 +14764,10 @@ class BankTransactionCommentService extends RestService$1 {
14762
14764
  this.endpointUri = 'bank-transaction-comments';
14763
14765
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
14764
14766
  }
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' }); }
14767
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionCommentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14768
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionCommentService, providedIn: 'root' }); }
14767
14769
  }
14768
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionCommentService, decorators: [{
14770
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionCommentService, decorators: [{
14769
14771
  type: Injectable,
14770
14772
  args: [{
14771
14773
  providedIn: 'root'
@@ -14791,10 +14793,10 @@ class BankService extends RestService$1 {
14791
14793
  this.endpointUri = 'banks';
14792
14794
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
14793
14795
  }
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' }); }
14796
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14797
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankService, providedIn: 'root' }); }
14796
14798
  }
14797
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankService, decorators: [{
14799
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankService, decorators: [{
14798
14800
  type: Injectable,
14799
14801
  args: [{
14800
14802
  providedIn: 'root'
@@ -14820,10 +14822,10 @@ class ExchangeRateService extends RestService$1 {
14820
14822
  this.collectionClass = Collection;
14821
14823
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
14822
14824
  }
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' }); }
14825
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExchangeRateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14826
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExchangeRateService, providedIn: 'root' }); }
14825
14827
  }
14826
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExchangeRateService, decorators: [{
14828
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExchangeRateService, decorators: [{
14827
14829
  type: Injectable,
14828
14830
  args: [{
14829
14831
  providedIn: 'root'
@@ -14839,10 +14841,10 @@ class BudgetService extends RestService$1 {
14839
14841
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
14840
14842
  this.roles = [UserRolesEnum.MONEY_TANK];
14841
14843
  }
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' }); }
14844
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14845
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetService, providedIn: 'root' }); }
14844
14846
  }
14845
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetService, decorators: [{
14847
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetService, decorators: [{
14846
14848
  type: Injectable,
14847
14849
  args: [{
14848
14850
  providedIn: 'root'
@@ -14866,10 +14868,10 @@ class BudgetRuleService extends RestService$1 {
14866
14868
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
14867
14869
  this.roles = [UserRolesEnum.MONEY_TANK];
14868
14870
  }
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' }); }
14871
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14872
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetRuleService, providedIn: 'root' }); }
14871
14873
  }
14872
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetRuleService, decorators: [{
14874
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetRuleService, decorators: [{
14873
14875
  type: Injectable,
14874
14876
  args: [{
14875
14877
  providedIn: 'root'
@@ -14895,10 +14897,10 @@ class FinancialGoalService extends RestService$1 {
14895
14897
  complete(goal) {
14896
14898
  return this.put(Object.assign({}, goal, { status: FinancialGoalStatusEnum.COMPLETE, finalValue: goal.bankAccount.convertedBalance }));
14897
14899
  }
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' }); }
14900
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialGoalService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14901
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialGoalService, providedIn: 'root' }); }
14900
14902
  }
14901
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialGoalService, decorators: [{
14903
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialGoalService, decorators: [{
14902
14904
  type: Injectable,
14903
14905
  args: [{
14904
14906
  providedIn: 'root'
@@ -14929,10 +14931,10 @@ class CalendarReminderService extends RestService$1 {
14929
14931
  this.listenCSE(SoleBusiness, this.refreshCache, ['put']);
14930
14932
  this.listenCSE(IncomeSource, this.refreshCache, ['put']);
14931
14933
  }
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' }); }
14934
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CalendarReminderService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
14935
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CalendarReminderService, providedIn: 'root' }); }
14934
14936
  }
14935
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CalendarReminderService, decorators: [{
14937
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CalendarReminderService, decorators: [{
14936
14938
  type: Injectable,
14937
14939
  args: [{
14938
14940
  providedIn: 'root',
@@ -14961,10 +14963,10 @@ class ChartAccountsDepreciationService extends RestService$1 {
14961
14963
  this.collectionClass = Collection;
14962
14964
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
14963
14965
  }
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' }); }
14966
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
14967
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' }); }
14966
14968
  }
14967
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
14969
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
14968
14970
  type: Injectable,
14969
14971
  args: [{
14970
14972
  providedIn: 'root'
@@ -15003,10 +15005,10 @@ class ChartAccountsService extends RestService$1 {
15003
15005
  return headings;
15004
15006
  }));
15005
15007
  }
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' }); }
15008
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15009
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsService, providedIn: 'root' }); }
15008
15010
  }
15009
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsService, decorators: [{
15011
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsService, decorators: [{
15010
15012
  type: Injectable,
15011
15013
  args: [{
15012
15014
  providedIn: 'root'
@@ -15090,10 +15092,10 @@ class ChatService extends RestService$1 {
15090
15092
  this.setCache(cache, true);
15091
15093
  }, ['post']);
15092
15094
  }
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' }); }
15095
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChatService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15096
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChatService, providedIn: 'root' }); }
15095
15097
  }
15096
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChatService, decorators: [{
15098
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChatService, decorators: [{
15097
15099
  type: Injectable,
15098
15100
  args: [{
15099
15101
  providedIn: 'root'
@@ -15123,10 +15125,10 @@ class MessageService extends RestService$1 {
15123
15125
  getUnreadChatsAmount() {
15124
15126
  return this.get().pipe(map((messages) => messages.getUnreadChatsAmount()));
15125
15127
  }
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' }); }
15128
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15129
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageService, providedIn: 'root' }); }
15128
15130
  }
15129
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageService, decorators: [{
15131
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageService, decorators: [{
15130
15132
  type: Injectable,
15131
15133
  args: [{
15132
15134
  providedIn: 'root'
@@ -15195,10 +15197,10 @@ class MessageDocumentService extends RestService$1 {
15195
15197
  addBatch(chatId, files) {
15196
15198
  return combineLatest(files.map((file) => this.add(chatId, file))).pipe(map((docsBase) => docsBase.map((docBase) => plainToClass(MessageDocument, docBase))));
15197
15199
  }
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' }); }
15200
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageDocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15201
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageDocumentService, providedIn: 'root' }); }
15200
15202
  }
15201
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageDocumentService, decorators: [{
15203
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageDocumentService, decorators: [{
15202
15204
  type: Injectable,
15203
15205
  args: [{
15204
15206
  providedIn: 'root'
@@ -15219,10 +15221,10 @@ class DashboardSettingsService extends RestService$1 {
15219
15221
  this.endpointUri = 'dashboard-settings';
15220
15222
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
15221
15223
  }
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' }); }
15224
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DashboardSettingsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15225
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DashboardSettingsService, providedIn: 'root' }); }
15224
15226
  }
15225
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DashboardSettingsService, decorators: [{
15227
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DashboardSettingsService, decorators: [{
15226
15228
  type: Injectable,
15227
15229
  args: [{
15228
15230
  providedIn: 'root'
@@ -15312,10 +15314,10 @@ class DepreciationService extends RestService$1 {
15312
15314
  this.refreshCache();
15313
15315
  });
15314
15316
  }
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' }); }
15317
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15318
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationService, providedIn: 'root' }); }
15317
15319
  }
15318
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationService, decorators: [{
15320
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationService, decorators: [{
15319
15321
  type: Injectable,
15320
15322
  args: [{
15321
15323
  providedIn: 'root'
@@ -15337,10 +15339,10 @@ class DepreciationCapitalProjectService extends RestService$1 {
15337
15339
  this.endpointUri = 'depreciation-capital-projects';
15338
15340
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
15339
15341
  }
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' }); }
15342
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationCapitalProjectService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15343
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' }); }
15342
15344
  }
15343
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
15345
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
15344
15346
  type: Injectable,
15345
15347
  args: [{
15346
15348
  providedIn: 'root'
@@ -15363,10 +15365,10 @@ class PriorDepreciationService extends RestService$1 {
15363
15365
  const financialYear = new FinancialYear(new FinancialYear().year - 1);
15364
15366
  return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(depreciations => depreciations.filterByFinancialYear('date', null, financialYear)));
15365
15367
  }
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' }); }
15368
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15369
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorDepreciationService, providedIn: 'root' }); }
15368
15370
  }
15369
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorDepreciationService, decorators: [{
15371
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorDepreciationService, decorators: [{
15370
15372
  type: Injectable,
15371
15373
  args: [{
15372
15374
  providedIn: 'root'
@@ -15392,10 +15394,10 @@ class DocumentFolderService extends RestService$1 {
15392
15394
  this.modelClass = DocumentFolder;
15393
15395
  this.disabledMethods = ['deleteBatch', 'postBatch', 'putBatch'];
15394
15396
  }
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' }); }
15397
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15398
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentFolderService, providedIn: 'root' }); }
15397
15399
  }
15398
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentFolderService, decorators: [{
15400
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentFolderService, decorators: [{
15399
15401
  type: Injectable,
15400
15402
  args: [{
15401
15403
  providedIn: 'root'
@@ -15420,10 +15422,10 @@ class DocumentService extends RestService$1 {
15420
15422
  postFiles(folder, files) {
15421
15423
  return this.postParallel(files.map(file => plainToClass(Document, { folder, file })));
15422
15424
  }
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' }); }
15425
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15426
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentService, providedIn: 'root' }); }
15425
15427
  }
15426
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentService, decorators: [{
15428
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentService, decorators: [{
15427
15429
  type: Injectable,
15428
15430
  args: [{
15429
15431
  providedIn: 'root'
@@ -15508,10 +15510,10 @@ class FacebookService {
15508
15510
  });
15509
15511
  });
15510
15512
  }
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' }); }
15513
+ 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 }); }
15514
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FacebookService, providedIn: 'root' }); }
15513
15515
  }
15514
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FacebookService, decorators: [{
15516
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FacebookService, decorators: [{
15515
15517
  type: Injectable,
15516
15518
  args: [{
15517
15519
  providedIn: 'root'
@@ -15578,10 +15580,10 @@ class GoogleService {
15578
15580
  logout() {
15579
15581
  google.accounts.id.disableAutoSelect();
15580
15582
  }
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' }); }
15583
+ 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 }); }
15584
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GoogleService, providedIn: 'root' }); }
15583
15585
  }
15584
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GoogleService, decorators: [{
15586
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GoogleService, decorators: [{
15585
15587
  type: Injectable,
15586
15588
  args: [{
15587
15589
  providedIn: 'root'
@@ -15613,10 +15615,10 @@ class FileService extends RestService$1 {
15613
15615
  download(file) {
15614
15616
  return this.http.get(`${this.apiUrl}/${file.id}/download`, { responseType: 'blob' });
15615
15617
  }
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' }); }
15618
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15619
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FileService, providedIn: 'root' }); }
15618
15620
  }
15619
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FileService, decorators: [{
15621
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FileService, decorators: [{
15620
15622
  type: Injectable,
15621
15623
  args: [{
15622
15624
  providedIn: 'root'
@@ -15706,10 +15708,10 @@ class ClientInviteService extends RestService$1 {
15706
15708
  }
15707
15709
  });
15708
15710
  }
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' }); }
15711
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientInviteService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15712
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientInviteService, providedIn: 'root' }); }
15711
15713
  }
15712
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientInviteService, decorators: [{
15714
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientInviteService, decorators: [{
15713
15715
  type: Injectable,
15714
15716
  args: [{
15715
15717
  providedIn: 'root'
@@ -15799,10 +15801,10 @@ class ClientMovementService extends RestService$1 {
15799
15801
  // this.updateCache([clientMovement], 'delete');
15800
15802
  }));
15801
15803
  }
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' }); }
15804
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
15805
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementService, providedIn: 'root' }); }
15804
15806
  }
15805
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementService, decorators: [{
15807
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementService, decorators: [{
15806
15808
  type: Injectable,
15807
15809
  args: [{
15808
15810
  providedIn: 'root'
@@ -15863,10 +15865,10 @@ class EmployeeService extends RestService$1 {
15863
15865
  index === -1 ? employee.roles.push(role) : employee.roles.splice(index, 1);
15864
15866
  return super.put(employee, `${this.environment.apiV2}/${this.endpointUri}/${employee.id}`);
15865
15867
  }
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' }); }
15868
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15869
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeService, providedIn: 'root' }); }
15868
15870
  }
15869
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeService, decorators: [{
15871
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeService, decorators: [{
15870
15872
  type: Injectable,
15871
15873
  args: [{
15872
15874
  providedIn: 'root'
@@ -15927,10 +15929,10 @@ class EmployeeInviteService extends RestService$1 {
15927
15929
  return updatedInvite;
15928
15930
  }));
15929
15931
  }
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' }); }
15932
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15933
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' }); }
15932
15934
  }
15933
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeInviteService, decorators: [{
15935
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeInviteService, decorators: [{
15934
15936
  type: Injectable,
15935
15937
  args: [{
15936
15938
  providedIn: 'root'
@@ -15954,10 +15956,10 @@ class ClientPortfolioReportService {
15954
15956
  return new ClientPortfolioReportCollection(clientReports);
15955
15957
  }));
15956
15958
  }
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' }); }
15959
+ 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 }); }
15960
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' }); }
15959
15961
  }
15960
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
15962
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
15961
15963
  type: Injectable,
15962
15964
  args: [{
15963
15965
  providedIn: 'root'
@@ -16001,10 +16003,10 @@ class FirmService {
16001
16003
  this.firmSubject.next(updatedInstance);
16002
16004
  }));
16003
16005
  }
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' }); }
16006
+ 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 }); }
16007
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmService, providedIn: 'root' }); }
16006
16008
  }
16007
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmService, decorators: [{
16009
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmService, decorators: [{
16008
16010
  type: Injectable,
16009
16011
  args: [{
16010
16012
  providedIn: 'root'
@@ -16022,10 +16024,10 @@ class FirmBranchService extends RestService$1 {
16022
16024
  this.collectionClass = (Collection);
16023
16025
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
16024
16026
  }
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' }); }
16027
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmBranchService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16028
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmBranchService, providedIn: 'root' }); }
16027
16029
  }
16028
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmBranchService, decorators: [{
16030
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmBranchService, decorators: [{
16029
16031
  type: Injectable,
16030
16032
  args: [{
16031
16033
  providedIn: 'root'
@@ -16266,10 +16268,10 @@ class RestService {
16266
16268
  getCache() {
16267
16269
  return clone(this.cache);
16268
16270
  }
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' }); }
16271
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16272
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, providedIn: 'root' }); }
16271
16273
  }
16272
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, decorators: [{
16274
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, decorators: [{
16273
16275
  type: Injectable,
16274
16276
  args: [{
16275
16277
  providedIn: 'root'
@@ -16344,10 +16346,10 @@ class IncomeSourceForecastService extends RestService {
16344
16346
  return incomeSource.incomeSourceForecasts;
16345
16347
  }).flat();
16346
16348
  }
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' }); }
16349
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16350
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' }); }
16349
16351
  }
16350
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
16352
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
16351
16353
  type: Injectable,
16352
16354
  args: [{
16353
16355
  providedIn: 'root'
@@ -16421,10 +16423,10 @@ class SalaryForecastService extends RestService {
16421
16423
  return incomeSource.salaryForecasts;
16422
16424
  }).flat();
16423
16425
  }
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' }); }
16426
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SalaryForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16427
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SalaryForecastService, providedIn: 'root' }); }
16426
16428
  }
16427
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SalaryForecastService, decorators: [{
16429
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SalaryForecastService, decorators: [{
16428
16430
  type: Injectable,
16429
16431
  args: [{
16430
16432
  providedIn: 'root'
@@ -16506,10 +16508,10 @@ class SoleForecastService extends RestService {
16506
16508
  this.refreshCache();
16507
16509
  });
16508
16510
  }
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' }); }
16511
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16512
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleForecastService, providedIn: 'root' }); }
16511
16513
  }
16512
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleForecastService, decorators: [{
16514
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleForecastService, decorators: [{
16513
16515
  type: Injectable,
16514
16516
  args: [{
16515
16517
  providedIn: 'root'
@@ -16592,10 +16594,10 @@ class IncomeSourceService extends RestService {
16592
16594
  this.refreshCache();
16593
16595
  });
16594
16596
  }
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' }); }
16597
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16598
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceService, providedIn: 'root' }); }
16597
16599
  }
16598
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceService, decorators: [{
16600
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceService, decorators: [{
16599
16601
  type: Injectable,
16600
16602
  args: [{
16601
16603
  providedIn: 'root'
@@ -16668,10 +16670,10 @@ class BorrowingExpenseService {
16668
16670
  return combinedBorrowingExpenses;
16669
16671
  }));
16670
16672
  }
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' }); }
16673
+ 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 }); }
16674
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' }); }
16673
16675
  }
16674
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingExpenseService, decorators: [{
16676
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingExpenseService, decorators: [{
16675
16677
  type: Injectable,
16676
16678
  args: [{
16677
16679
  providedIn: 'root'
@@ -16755,10 +16757,10 @@ class LoanService extends RestService$1 {
16755
16757
  delete(loan) {
16756
16758
  return super.delete(loan, `${this.environment.apiV2}/loans/${loan.id}`);
16757
16759
  }
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' }); }
16760
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: LoanService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16761
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: LoanService, providedIn: 'root' }); }
16760
16762
  }
16761
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: LoanService, decorators: [{
16763
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: LoanService, decorators: [{
16762
16764
  type: Injectable,
16763
16765
  args: [{
16764
16766
  providedIn: 'root'
@@ -16784,10 +16786,10 @@ class BorrowingReportService extends RestService$1 {
16784
16786
  this.collectionClass = Collection;
16785
16787
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
16786
16788
  }
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' }); }
16789
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16790
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingReportService, providedIn: 'root' }); }
16789
16791
  }
16790
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingReportService, decorators: [{
16792
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingReportService, decorators: [{
16791
16793
  type: Injectable,
16792
16794
  args: [{
16793
16795
  providedIn: 'root'
@@ -16812,10 +16814,10 @@ class PropertyCategoryService extends RestService$1 {
16812
16814
  this.endpointUri = 'properties/categories';
16813
16815
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
16814
16816
  }
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' }); }
16817
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16818
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' }); }
16817
16819
  }
16818
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryService, decorators: [{
16820
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryService, decorators: [{
16819
16821
  type: Injectable,
16820
16822
  args: [{
16821
16823
  providedIn: 'root'
@@ -16837,10 +16839,10 @@ class PropertyCategoryMovementService extends RestService$1 {
16837
16839
  this.listenCSE(Property, this.refreshCache, ['post']);
16838
16840
  this.listenCSE(PropertyValuation, this.refreshCache);
16839
16841
  }
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' }); }
16842
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
16843
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' }); }
16842
16844
  }
16843
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
16845
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
16844
16846
  type: Injectable,
16845
16847
  args: [{
16846
16848
  providedIn: 'root'
@@ -16921,10 +16923,10 @@ class TaxExemptionService extends DataService {
16921
16923
  this.collectionClass = TaxExemptionCollection;
16922
16924
  this.setCache(TaxExemptions);
16923
16925
  }
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' }); }
16926
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxExemptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
16927
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxExemptionService, providedIn: 'root' }); }
16926
16928
  }
16927
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxExemptionService, decorators: [{
16929
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxExemptionService, decorators: [{
16928
16930
  type: Injectable,
16929
16931
  args: [{
16930
16932
  providedIn: 'root'
@@ -16940,10 +16942,10 @@ class PropertySaleService extends RestService$1 {
16940
16942
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
16941
16943
  this.roles = [UserRolesEnum$1.PROPERTY_TANK];
16942
16944
  }
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' }); }
16945
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16946
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertySaleService, providedIn: 'root' }); }
16945
16947
  }
16946
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertySaleService, decorators: [{
16948
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertySaleService, decorators: [{
16947
16949
  type: Injectable,
16948
16950
  args: [{
16949
16951
  providedIn: 'root'
@@ -16997,10 +16999,10 @@ class PropertyShareService extends RestService$1 {
16997
16999
  listenSalesChanges() {
16998
17000
  this.listenCSE(PropertySale, this.refreshCache, ['post', 'delete']);
16999
17001
  }
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' }); }
17002
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyShareService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17003
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyShareService, providedIn: 'root' }); }
17002
17004
  }
17003
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyShareService, decorators: [{
17005
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyShareService, decorators: [{
17004
17006
  type: Injectable,
17005
17007
  args: [{
17006
17008
  providedIn: 'root'
@@ -17019,10 +17021,10 @@ class PropertyValuationService extends RestService$1 {
17019
17021
  this.disabledMethods = ['postBatch', 'putBatch'];
17020
17022
  this.useBackendError = true;
17021
17023
  }
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' }); }
17024
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyValuationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17025
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyValuationService, providedIn: 'root' }); }
17024
17026
  }
17025
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyValuationService, decorators: [{
17027
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyValuationService, decorators: [{
17026
17028
  type: Injectable,
17027
17029
  args: [{
17028
17030
  providedIn: 'root'
@@ -17166,10 +17168,10 @@ class PropertyService extends RestService$1 {
17166
17168
  return of({ growthPercent: 0, lowMarketValue: 0, marketValue: 0, highMarketValue: 0, confidence: PropertyCorelogicStatsConfidenceTypeEnum.LOW });
17167
17169
  }));
17168
17170
  }
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' }); }
17171
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17172
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
17171
17173
  }
17172
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyService, decorators: [{
17174
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyService, decorators: [{
17173
17175
  type: Injectable,
17174
17176
  args: [{
17175
17177
  providedIn: 'root'
@@ -17226,10 +17228,10 @@ class ServiceNotificationService extends RestService {
17226
17228
  this.eventDispatcherService.dispatch(new AppEvent(AppEventTypeEnum.NOTIFICATION_ADDED, notification));
17227
17229
  });
17228
17230
  }
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' }); }
17231
+ 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 }); }
17232
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' }); }
17231
17233
  }
17232
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceNotificationService, decorators: [{
17234
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceNotificationService, decorators: [{
17233
17235
  type: Injectable,
17234
17236
  args: [{
17235
17237
  providedIn: 'root'
@@ -17258,10 +17260,10 @@ class SoleBusinessService extends RestService$1 {
17258
17260
  this.roles = [UserRolesEnum$1.SOLE_TANK];
17259
17261
  this.useBackendError = true;
17260
17262
  }
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' }); }
17263
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17264
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessService, providedIn: 'root' }); }
17263
17265
  }
17264
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessService, decorators: [{
17266
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessService, decorators: [{
17265
17267
  type: Injectable,
17266
17268
  args: [{
17267
17269
  providedIn: 'root'
@@ -17274,10 +17276,10 @@ class SoleBusinessActivityService extends RestService {
17274
17276
  this.modelClass = SoleBusinessActivity;
17275
17277
  this.url = 'sole-business-activities';
17276
17278
  }
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' }); }
17279
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17280
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' }); }
17279
17281
  }
17280
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
17282
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
17281
17283
  type: Injectable,
17282
17284
  args: [{
17283
17285
  providedIn: 'root'
@@ -17306,10 +17308,10 @@ class SoleBusinessLossService extends RestService$1 {
17306
17308
  this.refreshCache();
17307
17309
  });
17308
17310
  }
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' }); }
17311
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17312
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' }); }
17311
17313
  }
17312
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossService, decorators: [{
17314
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossService, decorators: [{
17313
17315
  type: Injectable,
17314
17316
  args: [{
17315
17317
  providedIn: 'root'
@@ -17328,10 +17330,10 @@ class SoleBusinessLossOffsetRuleService extends RestService {
17328
17330
  this.modelClass = SoleBusinessLossOffsetRule;
17329
17331
  this.url = 'sole-business-loss-offset-rules';
17330
17332
  }
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' }); }
17333
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17334
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' }); }
17333
17335
  }
17334
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
17336
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
17335
17337
  type: Injectable,
17336
17338
  args: [{
17337
17339
  providedIn: 'root'
@@ -17347,10 +17349,10 @@ class SoleContactService extends RestService$1 {
17347
17349
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
17348
17350
  this.useBackendError = true;
17349
17351
  }
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' }); }
17352
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17353
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleContactService, providedIn: 'root' }); }
17352
17354
  }
17353
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleContactService, decorators: [{
17355
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleContactService, decorators: [{
17354
17356
  type: Injectable,
17355
17357
  args: [{
17356
17358
  providedIn: 'root'
@@ -17377,10 +17379,10 @@ class BusinessDepreciationMethodService extends RestService$1 {
17377
17379
  this.roles = [UserRolesEnum.SOLE_TANK];
17378
17380
  this.useBackendError = true;
17379
17381
  }
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' }); }
17382
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessDepreciationMethodService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17383
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessDepreciationMethodService, providedIn: 'root' }); }
17382
17384
  }
17383
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessDepreciationMethodService, decorators: [{
17385
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessDepreciationMethodService, decorators: [{
17384
17386
  type: Injectable,
17385
17387
  args: [{
17386
17388
  providedIn: 'root'
@@ -17402,10 +17404,10 @@ class SoleDetailsService extends RestService$1 {
17402
17404
  get() {
17403
17405
  return super.get().pipe(map(soleDetails => soleDetails.length ? soleDetails : new Collection([plainToClass(SoleDetails, {})])));
17404
17406
  }
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' }); }
17407
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17408
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsService, providedIn: 'root' }); }
17407
17409
  }
17408
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsService, decorators: [{
17410
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsService, decorators: [{
17409
17411
  type: Injectable,
17410
17412
  args: [{
17411
17413
  providedIn: 'root'
@@ -17447,10 +17449,10 @@ class SoleInvoiceService extends RestService$1 {
17447
17449
  getInvoices() {
17448
17450
  return this.get().pipe(map((invoices) => invoices.filterBy('type', SoleInvoiceTypeEnum.INVOICE)));
17449
17451
  }
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' }); }
17452
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17453
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' }); }
17452
17454
  }
17453
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceService, decorators: [{
17455
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceService, decorators: [{
17454
17456
  type: Injectable,
17455
17457
  args: [{
17456
17458
  providedIn: 'root'
@@ -17466,10 +17468,10 @@ class SoleInvoiceTemplateService extends RestService {
17466
17468
  this.modelClass = SoleInvoiceTemplate;
17467
17469
  this.url = 'sole-invoice-templates';
17468
17470
  }
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' }); }
17471
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17472
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' }); }
17471
17473
  }
17472
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
17474
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
17473
17475
  type: Injectable,
17474
17476
  args: [{
17475
17477
  providedIn: 'root'
@@ -17493,10 +17495,10 @@ class BasReportService extends RestService$1 {
17493
17495
  this.roles = [UserRolesEnum.SOLE_TANK];
17494
17496
  this.useBackendError = true;
17495
17497
  }
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' }); }
17498
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17499
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasReportService, providedIn: 'root' }); }
17498
17500
  }
17499
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasReportService, decorators: [{
17501
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasReportService, decorators: [{
17500
17502
  type: Injectable,
17501
17503
  args: [{
17502
17504
  providedIn: 'root'
@@ -17520,10 +17522,10 @@ class ServicePaymentService extends RestService$1 {
17520
17522
  }
17521
17523
  return this.http.get(`${this.environment.apiV2}/service-payments/${payment.id}/invoice-url`);
17522
17524
  }
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' }); }
17525
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17526
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentService, providedIn: 'root' }); }
17525
17527
  }
17526
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentService, decorators: [{
17528
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentService, decorators: [{
17527
17529
  type: Injectable,
17528
17530
  args: [{
17529
17531
  providedIn: 'root'
@@ -17555,10 +17557,10 @@ class ServicePaymentMethodService extends RestService$1 {
17555
17557
  return this.http.put(`${this.apiUrl}/${paymentMethod.id}/default`, {})
17556
17558
  .pipe(map((updatedPaymentMethod) => plainToClass(ServicePaymentMethod, updatedPaymentMethod)));
17557
17559
  }
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' }); }
17560
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentMethodService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17561
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' }); }
17560
17562
  }
17561
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
17563
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
17562
17564
  type: Injectable,
17563
17565
  args: [{
17564
17566
  providedIn: 'root'
@@ -17579,10 +17581,10 @@ class ServicePriceService extends RestService$1 {
17579
17581
  this.collectionClass = ServicePriceCollection;
17580
17582
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
17581
17583
  }
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' }); }
17584
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17585
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePriceService, providedIn: 'root' }); }
17584
17586
  }
17585
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePriceService, decorators: [{
17587
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePriceService, decorators: [{
17586
17588
  type: Injectable,
17587
17589
  args: [{
17588
17590
  providedIn: 'root'
@@ -17667,10 +17669,10 @@ class SubscriptionService extends RestService$1 {
17667
17669
  get(path = this.apiUrl) {
17668
17670
  return super.get(path).pipe(map(subscriptions => subscriptions.sortBy('isActive', 'ask')));
17669
17671
  }
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' }); }
17672
+ 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 }); }
17673
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SubscriptionService, providedIn: 'root' }); }
17672
17674
  }
17673
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SubscriptionService, decorators: [{
17675
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SubscriptionService, decorators: [{
17674
17676
  type: Injectable,
17675
17677
  args: [{
17676
17678
  providedIn: 'root'
@@ -17688,10 +17690,10 @@ class ServiceProductService extends RestService$1 {
17688
17690
  this.endpointUri = 'service-products';
17689
17691
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
17690
17692
  }
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' }); }
17693
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
17694
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceProductService, providedIn: 'root' }); }
17693
17695
  }
17694
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceProductService, decorators: [{
17696
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceProductService, decorators: [{
17695
17697
  type: Injectable,
17696
17698
  args: [{
17697
17699
  providedIn: 'root'
@@ -17827,10 +17829,10 @@ class TaxReviewHistoryService extends RestService {
17827
17829
  this.updateCache();
17828
17830
  });
17829
17831
  }
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' }); }
17832
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewHistoryService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17833
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' }); }
17832
17834
  }
17833
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
17835
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
17834
17836
  type: Injectable,
17835
17837
  args: [{
17836
17838
  providedIn: 'root'
@@ -17923,10 +17925,10 @@ class TaxReviewService extends RestService {
17923
17925
  }
17924
17926
  });
17925
17927
  }
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' }); }
17928
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
17929
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewService, providedIn: 'root' }); }
17928
17930
  }
17929
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewService, decorators: [{
17931
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewService, decorators: [{
17930
17932
  type: Injectable,
17931
17933
  args: [{
17932
17934
  providedIn: 'root'
@@ -18257,10 +18259,10 @@ class TaxSummaryService {
18257
18259
  this.getForecast().subscribe();
18258
18260
  });
18259
18261
  }
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' }); }
18262
+ 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 }); }
18263
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxSummaryService, providedIn: 'root' }); }
18262
18264
  }
18263
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxSummaryService, decorators: [{
18265
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxSummaryService, decorators: [{
18264
18266
  type: Injectable,
18265
18267
  args: [{
18266
18268
  providedIn: 'root'
@@ -18281,10 +18283,10 @@ class AllocationRuleService extends RestService$1 {
18281
18283
  getCustomHttpErrorMessages() {
18282
18284
  return { 422: 'You can only have 10 conditions in a rule' };
18283
18285
  }
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' }); }
18286
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18287
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AllocationRuleService, providedIn: 'root' }); }
18286
18288
  }
18287
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AllocationRuleService, decorators: [{
18289
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AllocationRuleService, decorators: [{
18288
18290
  type: Injectable,
18289
18291
  args: [{
18290
18292
  providedIn: 'root'
@@ -18389,10 +18391,10 @@ class TransactionAllocationService extends RestService {
18389
18391
  }
18390
18392
  });
18391
18393
  }
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' }); }
18394
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionAllocationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
18395
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' }); }
18394
18396
  }
18395
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionAllocationService, decorators: [{
18397
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionAllocationService, decorators: [{
18396
18398
  type: Injectable,
18397
18399
  args: [{
18398
18400
  providedIn: 'root'
@@ -18644,10 +18646,10 @@ class TransactionService extends RestService {
18644
18646
  }
18645
18647
  });
18646
18648
  }
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' }); }
18649
+ 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 }); }
18650
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionService, providedIn: 'root' }); }
18649
18651
  }
18650
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionService, decorators: [{
18652
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionService, decorators: [{
18651
18653
  type: Injectable,
18652
18654
  args: [{
18653
18655
  providedIn: 'root'
@@ -18673,10 +18675,10 @@ class PriorTransactionService extends RestService$1 {
18673
18675
  const financialYear = new FinancialYear(new FinancialYear().year - 1);
18674
18676
  return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(transactions => transactions.filterByFinancialYear('date', null, financialYear)));
18675
18677
  }
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' }); }
18678
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18679
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorTransactionService, providedIn: 'root' }); }
18678
18680
  }
18679
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorTransactionService, decorators: [{
18681
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorTransactionService, decorators: [{
18680
18682
  type: Injectable,
18681
18683
  args: [{
18682
18684
  providedIn: 'root'
@@ -18698,10 +18700,10 @@ class InvoiceTransactionsService extends RestService$1 {
18698
18700
  this.endpointUri = 'invoices/transactions';
18699
18701
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
18700
18702
  }
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' }); }
18703
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InvoiceTransactionsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18704
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InvoiceTransactionsService, providedIn: 'root' }); }
18703
18705
  }
18704
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InvoiceTransactionsService, decorators: [{
18706
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InvoiceTransactionsService, decorators: [{
18705
18707
  type: Injectable,
18706
18708
  args: [{
18707
18709
  providedIn: 'root'
@@ -18725,10 +18727,10 @@ class YoutubeService {
18725
18727
  title: item.snippet.title
18726
18728
  }))));
18727
18729
  }
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' }); }
18730
+ 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 }); }
18731
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: YoutubeService, providedIn: 'root' }); }
18730
18732
  }
18731
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: YoutubeService, decorators: [{
18733
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: YoutubeService, decorators: [{
18732
18734
  type: Injectable,
18733
18735
  args: [{
18734
18736
  providedIn: 'root'
@@ -18748,10 +18750,10 @@ class VehicleService extends RestService$1 {
18748
18750
  this.collectionClass = (Collection);
18749
18751
  this.modelClass = Vehicle;
18750
18752
  }
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' }); }
18753
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18754
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleService, providedIn: 'root' }); }
18753
18755
  }
18754
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleService, decorators: [{
18756
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleService, decorators: [{
18755
18757
  type: Injectable,
18756
18758
  args: [{
18757
18759
  providedIn: 'root'
@@ -18774,10 +18776,10 @@ class VehicleClaimService extends RestService$1 {
18774
18776
  this.collectionClass = VehicleClaimCollection;
18775
18777
  this.roles = [UserRolesEnum$1.WORK_TANK, UserRolesEnum$1.SOLE_TANK];
18776
18778
  }
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' }); }
18779
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18780
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleClaimService, providedIn: 'root' }); }
18779
18781
  }
18780
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleClaimService, decorators: [{
18782
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleClaimService, decorators: [{
18781
18783
  type: Injectable,
18782
18784
  args: [{
18783
18785
  providedIn: 'root'
@@ -18795,10 +18797,10 @@ class VehicleLogbookService extends RestService$1 {
18795
18797
  this.collectionClass = VehicleLogbookCollection;
18796
18798
  this.modelClass = VehicleLogbook;
18797
18799
  }
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' }); }
18800
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18801
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' }); }
18800
18802
  }
18801
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleLogbookService, decorators: [{
18803
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleLogbookService, decorators: [{
18802
18804
  type: Injectable,
18803
18805
  args: [{
18804
18806
  providedIn: 'root'
@@ -18821,10 +18823,10 @@ class AnnualClientDetailsService extends RestService$1 {
18821
18823
  this.endpointUri = 'annual-client-details';
18822
18824
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
18823
18825
  }
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' }); }
18826
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AnnualClientDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18827
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AnnualClientDetailsService, providedIn: 'root' }); }
18826
18828
  }
18827
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
18829
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
18828
18830
  type: Injectable,
18829
18831
  args: [{
18830
18832
  providedIn: 'root'
@@ -18854,10 +18856,10 @@ class OccupationService {
18854
18856
  }
18855
18857
  return this.occupationsSubject.asObservable();
18856
18858
  }
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' }); }
18859
+ 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 }); }
18860
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: OccupationService, providedIn: 'root' }); }
18859
18861
  }
18860
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: OccupationService, decorators: [{
18862
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: OccupationService, decorators: [{
18861
18863
  type: Injectable,
18862
18864
  args: [{
18863
18865
  providedIn: 'root'
@@ -18880,10 +18882,10 @@ class ClientCouponService extends RestService$1 {
18880
18882
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
18881
18883
  this.skipErrorCodes = [404];
18882
18884
  }
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' }); }
18885
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientCouponService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18886
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientCouponService, providedIn: 'root' }); }
18885
18887
  }
18886
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientCouponService, decorators: [{
18888
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientCouponService, decorators: [{
18887
18889
  type: Injectable,
18888
18890
  args: [{
18889
18891
  providedIn: 'root'
@@ -18898,10 +18900,10 @@ class CapitalLossService extends RestService$1 {
18898
18900
  this.collectionClass = (Collection);
18899
18901
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
18900
18902
  }
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' }); }
18903
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CapitalLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18904
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CapitalLossService, providedIn: 'root' }); }
18903
18905
  }
18904
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CapitalLossService, decorators: [{
18906
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CapitalLossService, decorators: [{
18905
18907
  type: Injectable,
18906
18908
  args: [{
18907
18909
  providedIn: 'root'
@@ -18964,10 +18966,10 @@ class UserEventSettingService extends RestService$1 {
18964
18966
  this.endpointUri = 'user-event-settings';
18965
18967
  this.disabledMethods = ['postBatch', 'putBatch', 'delete', 'deleteBatch'];
18966
18968
  }
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' }); }
18969
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18970
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventSettingService, providedIn: 'root' }); }
18969
18971
  }
18970
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventSettingService, decorators: [{
18972
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventSettingService, decorators: [{
18971
18973
  type: Injectable,
18972
18974
  args: [{
18973
18975
  providedIn: 'root'
@@ -18982,10 +18984,10 @@ class UserEventTypeService extends RestService$1 {
18982
18984
  this.endpointUri = 'user-event-types';
18983
18985
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
18984
18986
  }
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' }); }
18987
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
18988
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventTypeService, providedIn: 'root' }); }
18987
18989
  }
18988
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventTypeService, decorators: [{
18990
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventTypeService, decorators: [{
18989
18991
  type: Injectable,
18990
18992
  args: [{
18991
18993
  providedIn: 'root'
@@ -19013,10 +19015,10 @@ class UsersInviteService extends RestService {
19013
19015
  this.modelClass = RegistrationInvite;
19014
19016
  this.url = 'users/invite';
19015
19017
  }
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' }); }
19018
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19019
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UsersInviteService, providedIn: 'root' }); }
19018
19020
  }
19019
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UsersInviteService, decorators: [{
19021
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UsersInviteService, decorators: [{
19020
19022
  type: Injectable,
19021
19023
  args: [{
19022
19024
  providedIn: 'root'
@@ -19124,10 +19126,10 @@ class UserService extends RestService$1 {
19124
19126
  this.setCache([user], true);
19125
19127
  }, ['post', 'put']);
19126
19128
  }
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' }); }
19129
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19130
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserService, providedIn: 'root' }); }
19129
19131
  }
19130
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserService, decorators: [{
19132
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserService, decorators: [{
19131
19133
  type: Injectable,
19132
19134
  args: [{
19133
19135
  providedIn: 'root'
@@ -19148,10 +19150,10 @@ class FinancialYearService {
19148
19150
  window.location.reload();
19149
19151
  }));
19150
19152
  }
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' }); }
19153
+ 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 }); }
19154
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearService, providedIn: 'root' }); }
19153
19155
  }
19154
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearService, decorators: [{
19156
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearService, decorators: [{
19155
19157
  type: Injectable,
19156
19158
  args: [{
19157
19159
  providedIn: 'root'
@@ -19195,10 +19197,10 @@ class MfaDetailsService extends RestService$1 {
19195
19197
  return mfaDetails;
19196
19198
  }));
19197
19199
  }
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' }); }
19200
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MfaDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19201
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MfaDetailsService, providedIn: 'root' }); }
19200
19202
  }
19201
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MfaDetailsService, decorators: [{
19203
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MfaDetailsService, decorators: [{
19202
19204
  type: Injectable,
19203
19205
  args: [{
19204
19206
  providedIn: 'root'
@@ -19235,10 +19237,10 @@ class HoldingTradeService extends RestService$1 {
19235
19237
  }
19236
19238
  });
19237
19239
  }
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' }); }
19240
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19241
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeService, providedIn: 'root' }); }
19240
19242
  }
19241
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeService, decorators: [{
19243
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeService, decorators: [{
19242
19244
  type: Injectable,
19243
19245
  args: [{
19244
19246
  providedIn: 'root'
@@ -19278,10 +19280,10 @@ class HoldingTypeService extends RestService$1 {
19278
19280
  }
19279
19281
  });
19280
19282
  }
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' }); }
19283
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19284
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeService, providedIn: 'root' }); }
19283
19285
  }
19284
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeService, decorators: [{
19286
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeService, decorators: [{
19285
19287
  type: Injectable,
19286
19288
  args: [{
19287
19289
  providedIn: 'root'
@@ -19300,10 +19302,10 @@ class HoldingSaleService extends RestService$1 {
19300
19302
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
19301
19303
  this.roles = [UserRolesEnum$1.HOLDING_TANK];
19302
19304
  }
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' }); }
19305
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19306
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingSaleService, providedIn: 'root' }); }
19305
19307
  }
19306
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingSaleService, decorators: [{
19308
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingSaleService, decorators: [{
19307
19309
  type: Injectable,
19308
19310
  args: [{
19309
19311
  providedIn: 'root'
@@ -19336,10 +19338,10 @@ class HoldingTradeImportService extends RestService$1 {
19336
19338
  formData.append('isTaxFree', (isTaxFree ? 1 : 0).toString());
19337
19339
  return this.importFile(formData).pipe(tap$1(() => this.toastService.success(HoldingTradeImportMessagesEnum.CREATED)));
19338
19340
  }
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' }); }
19341
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeImportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19342
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeImportService, providedIn: 'root' }); }
19341
19343
  }
19342
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeImportService, decorators: [{
19344
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeImportService, decorators: [{
19343
19345
  type: Injectable,
19344
19346
  args: [{
19345
19347
  providedIn: 'root'
@@ -19433,10 +19435,10 @@ class HoldingTypeExchangeService extends DataService {
19433
19435
  this.collectionClass = Collection;
19434
19436
  this.setCache(HoldingTypeExchanges);
19435
19437
  }
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' }); }
19438
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeExchangeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
19439
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeExchangeService, providedIn: 'root' }); }
19438
19440
  }
19439
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeExchangeService, decorators: [{
19441
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeExchangeService, decorators: [{
19440
19442
  type: Injectable,
19441
19443
  args: [{
19442
19444
  providedIn: 'root'
@@ -19478,10 +19480,10 @@ class HoldingTaxStatementService extends RestService$1 {
19478
19480
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
19479
19481
  this.roles = [UserRolesEnum.HOLDING_TANK];
19480
19482
  }
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' }); }
19483
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19484
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementService, providedIn: 'root' }); }
19483
19485
  }
19484
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementService, decorators: [{
19486
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementService, decorators: [{
19485
19487
  type: Injectable,
19486
19488
  args: [{
19487
19489
  providedIn: 'root'
@@ -19505,10 +19507,10 @@ class HoldingTaxStatementPayerService extends RestService$1 {
19505
19507
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
19506
19508
  this.roles = [UserRolesEnum.HOLDING_TANK];
19507
19509
  }
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' }); }
19510
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementPayerService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19511
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementPayerService, providedIn: 'root' }); }
19510
19512
  }
19511
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementPayerService, decorators: [{
19513
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementPayerService, decorators: [{
19512
19514
  type: Injectable,
19513
19515
  args: [{
19514
19516
  providedIn: 'root'
@@ -19525,10 +19527,10 @@ class HoldingCostAdjustmentService extends RestService$1 {
19525
19527
  this.roles = [UserRolesEnum.HOLDING_TANK];
19526
19528
  this.useBackendError = true;
19527
19529
  }
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' }); }
19530
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingCostAdjustmentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19531
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingCostAdjustmentService, providedIn: 'root' }); }
19530
19532
  }
19531
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingCostAdjustmentService, decorators: [{
19533
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingCostAdjustmentService, decorators: [{
19532
19534
  type: Injectable,
19533
19535
  args: [{
19534
19536
  providedIn: 'root'
@@ -19552,10 +19554,10 @@ class HomeOfficeClaimService extends RestService$1 {
19552
19554
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
19553
19555
  this.roles = [UserRolesEnum$1.WORK_TANK, UserRolesEnum$1.SOLE_TANK];
19554
19556
  }
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' }); }
19557
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19558
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeClaimService, providedIn: 'root' }); }
19557
19559
  }
19558
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeClaimService, decorators: [{
19560
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeClaimService, decorators: [{
19559
19561
  type: Injectable,
19560
19562
  args: [{
19561
19563
  providedIn: 'root'
@@ -19583,10 +19585,10 @@ class HomeOfficeLogService extends RestService$1 {
19583
19585
  listenEvents() {
19584
19586
  this.listenCSE(HomeOfficeClaim, this.refreshCache, ['post']);
19585
19587
  }
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' }); }
19588
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeLogService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19589
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeLogService, providedIn: 'root' }); }
19588
19590
  }
19589
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeLogService, decorators: [{
19591
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeLogService, decorators: [{
19590
19592
  type: Injectable,
19591
19593
  args: [{
19592
19594
  providedIn: 'root'
@@ -19626,10 +19628,10 @@ class AussieService extends RestService$1 {
19626
19628
  postAppointment() {
19627
19629
  return this.http.delete(`${this.environment.apiV2}/aussie/appointments`);
19628
19630
  }
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' }); }
19631
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
19632
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieService, providedIn: 'root' }); }
19631
19633
  }
19632
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieService, decorators: [{
19634
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieService, decorators: [{
19633
19635
  type: Injectable,
19634
19636
  args: [{
19635
19637
  providedIn: 'root'
@@ -19653,10 +19655,10 @@ class SharesightDetailsService extends RestService$1 {
19653
19655
  reconnect(sharesightDetails) {
19654
19656
  return this.put(sharesightDetails, `${this.apiUrl}/${sharesightDetails.id}/reconnect`);
19655
19657
  }
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' }); }
19658
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19659
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightDetailsService, providedIn: 'root' }); }
19658
19660
  }
19659
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightDetailsService, decorators: [{
19661
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightDetailsService, decorators: [{
19660
19662
  type: Injectable,
19661
19663
  args: [{
19662
19664
  providedIn: 'root'
@@ -19674,10 +19676,10 @@ class SharesightPortfolioService extends RestService$1 {
19674
19676
  getExternal() {
19675
19677
  return this.fetch(`${this.apiUrl}/external`, false);
19676
19678
  }
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' }); }
19679
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightPortfolioService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
19680
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightPortfolioService, providedIn: 'root' }); }
19679
19681
  }
19680
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightPortfolioService, decorators: [{
19682
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightPortfolioService, decorators: [{
19681
19683
  type: Injectable,
19682
19684
  args: [{
19683
19685
  providedIn: 'root'
@@ -19759,10 +19761,10 @@ class IncomeSourceTypeService extends DataService {
19759
19761
  this.collectionClass = Collection;
19760
19762
  this.setCache(IncomeSourceTypes);
19761
19763
  }
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' }); }
19764
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceTypeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
19765
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceTypeService, providedIn: 'root' }); }
19764
19766
  }
19765
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceTypeService, decorators: [{
19767
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceTypeService, decorators: [{
19766
19768
  type: Injectable,
19767
19769
  args: [{
19768
19770
  providedIn: 'root'
@@ -19776,10 +19778,10 @@ class ChartAccountsValueService extends DataService {
19776
19778
  this.collectionClass = ChartAccountsValueCollection;
19777
19779
  this.setCache(ChartAccountsValues);
19778
19780
  }
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' }); }
19781
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsValueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
19782
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsValueService, providedIn: 'root' }); }
19781
19783
  }
19782
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsValueService, decorators: [{
19784
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsValueService, decorators: [{
19783
19785
  type: Injectable,
19784
19786
  args: [{
19785
19787
  providedIn: 'root'
@@ -21752,10 +21754,10 @@ class TaxReturnItemService extends DataService {
21752
21754
  this.collectionClass = Collection;
21753
21755
  this.setCache(TaxReturnItems);
21754
21756
  }
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' }); }
21757
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReturnItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
21758
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReturnItemService, providedIn: 'root' }); }
21757
21759
  }
21758
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReturnItemService, decorators: [{
21760
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReturnItemService, decorators: [{
21759
21761
  type: Injectable,
21760
21762
  args: [{
21761
21763
  providedIn: 'root'
@@ -21936,10 +21938,10 @@ class CurrencyService extends DataService {
21936
21938
  this.collectionClass = Collection;
21937
21939
  this.setCache(Currencies);
21938
21940
  }
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' }); }
21941
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrencyService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
21942
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrencyService, providedIn: 'root' }); }
21941
21943
  }
21942
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrencyService, decorators: [{
21944
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrencyService, decorators: [{
21943
21945
  type: Injectable,
21944
21946
  args: [{
21945
21947
  providedIn: 'root'
@@ -23450,10 +23452,10 @@ class CountryService extends DataService {
23450
23452
  this.collectionClass = Collection;
23451
23453
  this.setCache(countries);
23452
23454
  }
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' }); }
23455
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CountryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
23456
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CountryService, providedIn: 'root' }); }
23455
23457
  }
23456
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CountryService, decorators: [{
23458
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CountryService, decorators: [{
23457
23459
  type: Injectable,
23458
23460
  args: [{
23459
23461
  providedIn: 'root'
@@ -23468,10 +23470,10 @@ class SetupItemService extends RestService$1 {
23468
23470
  this.collectionClass = AccountSetupItemCollection;
23469
23471
  this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
23470
23472
  }
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' }); }
23473
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SetupItemService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
23474
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SetupItemService, providedIn: 'root' }); }
23473
23475
  }
23474
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SetupItemService, decorators: [{
23476
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SetupItemService, decorators: [{
23475
23477
  type: Injectable,
23476
23478
  args: [{
23477
23479
  providedIn: 'root'
@@ -23661,10 +23663,10 @@ class AccountSetupService {
23661
23663
  getSharesightDetails(importEnabled) {
23662
23664
  return this.sharesightDetailsService.getArray().pipe(map(details => details.filter(detail => importEnabled ? detail.importEnabled : detail.exportEnabled)));
23663
23665
  }
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' }); }
23666
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AccountSetupService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
23667
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AccountSetupService, providedIn: 'root' }); }
23666
23668
  }
23667
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AccountSetupService, decorators: [{
23669
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AccountSetupService, decorators: [{
23668
23670
  type: Injectable,
23669
23671
  args: [{
23670
23672
  providedIn: 'root'
@@ -23679,10 +23681,10 @@ class AdblockDetectorService {
23679
23681
  constructor() {
23680
23682
  checkAdBlock().then((isDetected) => this.isDetected = isDetected);
23681
23683
  }
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' }); }
23684
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdblockDetectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
23685
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdblockDetectorService, providedIn: 'root' }); }
23684
23686
  }
23685
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdblockDetectorService, decorators: [{
23687
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdblockDetectorService, decorators: [{
23686
23688
  type: Injectable,
23687
23689
  args: [{
23688
23690
  providedIn: 'root'
@@ -23725,10 +23727,10 @@ class UserSwitcherService {
23725
23727
  window.location.replace('/client/dashboard');
23726
23728
  });
23727
23729
  }
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' }); }
23730
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
23731
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherService, providedIn: 'root' }); }
23730
23732
  }
23731
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherService, decorators: [{
23733
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherService, decorators: [{
23732
23734
  type: Injectable,
23733
23735
  args: [{
23734
23736
  providedIn: 'root'
@@ -23772,10 +23774,10 @@ class AssetsService {
23772
23774
  delete(entityId, asset) {
23773
23775
  return this.http.delete(`${this.environment.apiV2}/${asset.entityType}/${entityId}/${asset.type}/${asset.id}`);
23774
23776
  }
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' }); }
23777
+ 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 }); }
23778
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AssetsService, providedIn: 'root' }); }
23777
23779
  }
23778
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AssetsService, decorators: [{
23780
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AssetsService, decorators: [{
23779
23781
  type: Injectable,
23780
23782
  args: [{
23781
23783
  providedIn: 'root'
@@ -23806,10 +23808,10 @@ class BankAccountCalculationService {
23806
23808
  });
23807
23809
  return total;
23808
23810
  }
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' }); }
23811
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
23812
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' }); }
23811
23813
  }
23812
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountCalculationService, decorators: [{
23814
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountCalculationService, decorators: [{
23813
23815
  type: Injectable,
23814
23816
  args: [{
23815
23817
  providedIn: 'root'
@@ -23846,10 +23848,10 @@ class CorelogicService {
23846
23848
  return throwError(() => error);
23847
23849
  }));
23848
23850
  }
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' }); }
23851
+ 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 }); }
23852
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicService, providedIn: 'root' }); }
23851
23853
  }
23852
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicService, decorators: [{
23854
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicService, decorators: [{
23853
23855
  type: Injectable,
23854
23856
  args: [{
23855
23857
  providedIn: 'root'
@@ -23867,10 +23869,10 @@ class GooglePlaceService {
23867
23869
  getSuggestions(search, country = 'au') {
23868
23870
  return this.http.get(`${this.environment.apiV2}/google-place/suggestions`, { params: { search, country } }).pipe(map((response) => response.map((item) => plainToClass(AddressSuggestion, item))));
23869
23871
  }
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' }); }
23872
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GooglePlaceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
23873
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GooglePlaceService, providedIn: 'root' }); }
23872
23874
  }
23873
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GooglePlaceService, decorators: [{
23875
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GooglePlaceService, decorators: [{
23874
23876
  type: Injectable,
23875
23877
  args: [{
23876
23878
  providedIn: 'root'
@@ -23900,10 +23902,10 @@ class ExportFormatterService {
23900
23902
  }
23901
23903
  }));
23902
23904
  }
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' }); }
23905
+ 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 }); }
23906
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExportFormatterService, providedIn: 'root' }); }
23905
23907
  }
23906
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExportFormatterService, decorators: [{
23908
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExportFormatterService, decorators: [{
23907
23909
  type: Injectable,
23908
23910
  args: [{
23909
23911
  providedIn: 'root'
@@ -23923,10 +23925,10 @@ class HeaderTitleService {
23923
23925
  return route;
23924
23926
  }), filter((route) => route.outlet === 'primary'), mergeMap((route) => route.data));
23925
23927
  }
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' }); }
23928
+ 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 }); }
23929
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HeaderTitleService, providedIn: 'root' }); }
23928
23930
  }
23929
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HeaderTitleService, decorators: [{
23931
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HeaderTitleService, decorators: [{
23930
23932
  type: Injectable,
23931
23933
  args: [{
23932
23934
  providedIn: 'root'
@@ -23959,10 +23961,10 @@ class IntercomService {
23959
23961
  const connectionCredentials = this.initUser(user);
23960
23962
  window.Intercom('boot', connectionCredentials);
23961
23963
  }
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' }); }
23964
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
23965
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IntercomService, providedIn: 'root' }); }
23964
23966
  }
23965
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IntercomService, decorators: [{
23967
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IntercomService, decorators: [{
23966
23968
  type: Injectable,
23967
23969
  args: [{
23968
23970
  providedIn: 'root'
@@ -24078,10 +24080,10 @@ class PdfFromDomElementService {
24078
24080
  idoc.head.appendChild(clone);
24079
24081
  });
24080
24082
  }
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' }); }
24083
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24084
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' }); }
24083
24085
  }
24084
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDomElementService, decorators: [{
24086
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDomElementService, decorators: [{
24085
24087
  type: Injectable,
24086
24088
  args: [{
24087
24089
  providedIn: 'root'
@@ -24197,10 +24199,10 @@ class PdfFromTableService {
24197
24199
  startY: lastTableCoords + FILE_SETTINGS.titleCoords.top / 2,
24198
24200
  });
24199
24201
  }
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' }); }
24202
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24203
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromTableService, providedIn: 'root' }); }
24202
24204
  }
24203
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromTableService, decorators: [{
24205
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromTableService, decorators: [{
24204
24206
  type: Injectable,
24205
24207
  args: [{
24206
24208
  providedIn: 'root'
@@ -24242,10 +24244,10 @@ class PdfFromDataTableService extends PdfFromTableService {
24242
24244
  });
24243
24245
  return pdf;
24244
24246
  }
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' }); }
24247
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable }); }
24248
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' }); }
24247
24249
  }
24248
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDataTableService, decorators: [{
24250
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDataTableService, decorators: [{
24249
24251
  type: Injectable,
24250
24252
  args: [{
24251
24253
  providedIn: 'root'
@@ -24296,10 +24298,10 @@ class PdfFromHtmlTableService extends PdfFromTableService {
24296
24298
  Array.from(caption.children).map((node) => node.textContent).join('\n') :
24297
24299
  caption.innerText;
24298
24300
  }
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' }); }
24301
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
24302
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' }); }
24301
24303
  }
24302
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
24304
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
24303
24305
  type: Injectable,
24304
24306
  args: [{
24305
24307
  providedIn: 'root'
@@ -24323,10 +24325,10 @@ class PreloaderService {
24323
24325
  activePreloaders = activePreloaders.filter((preloader) => preloader !== endpoint);
24324
24326
  this.activePreloaders.next(activePreloaders);
24325
24327
  }
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' }); }
24328
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24329
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderService, providedIn: 'root' }); }
24328
24330
  }
24329
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderService, decorators: [{
24331
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderService, decorators: [{
24330
24332
  type: Injectable,
24331
24333
  args: [{
24332
24334
  providedIn: 'root'
@@ -24352,10 +24354,10 @@ class EquityPositionChartService {
24352
24354
  }))
24353
24355
  }))));
24354
24356
  }
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' }); }
24357
+ 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 }); }
24358
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' }); }
24357
24359
  }
24358
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EquityPositionChartService, decorators: [{
24360
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EquityPositionChartService, decorators: [{
24359
24361
  type: Injectable,
24360
24362
  args: [{
24361
24363
  providedIn: 'root'
@@ -24518,10 +24520,10 @@ class PropertyCalculationService {
24518
24520
  return new Badge('Monitoring performance');
24519
24521
  }
24520
24522
  }
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' }); }
24523
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24524
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' }); }
24523
24525
  }
24524
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCalculationService, decorators: [{
24526
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCalculationService, decorators: [{
24525
24527
  type: Injectable,
24526
24528
  args: [{
24527
24529
  providedIn: 'root'
@@ -24579,10 +24581,10 @@ class PropertyTransactionReportService {
24579
24581
  getDepreciations() {
24580
24582
  return this.depreciationService.get().pipe(map((depreciations) => depreciations.getByChartAccountsCategories(CHART_ACCOUNTS_CATEGORIES.property)));
24581
24583
  }
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' }); }
24584
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyTransactionReportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24585
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' }); }
24584
24586
  }
24585
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
24587
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
24586
24588
  type: Injectable,
24587
24589
  args: [{
24588
24590
  providedIn: 'root'
@@ -24602,10 +24604,10 @@ class CurrentFirmBranchService {
24602
24604
  set(firmBranches) {
24603
24605
  this.firmBranchIds$.next(firmBranches.map(branch => branch.id));
24604
24606
  }
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' }); }
24607
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrentFirmBranchService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24608
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrentFirmBranchService, providedIn: 'root' }); }
24607
24609
  }
24608
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrentFirmBranchService, decorators: [{
24610
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrentFirmBranchService, decorators: [{
24609
24611
  type: Injectable,
24610
24612
  args: [{
24611
24613
  providedIn: 'root'
@@ -24700,10 +24702,10 @@ class XlsxService {
24700
24702
  const data = new Blob([excelFile], { type: EXCEL_TYPE });
24701
24703
  FileSaver.saveAs(data, `${fileName}.xlsx`);
24702
24704
  }
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' }); }
24705
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
24706
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: XlsxService, providedIn: 'root' }); }
24705
24707
  }
24706
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: XlsxService, decorators: [{
24708
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: XlsxService, decorators: [{
24707
24709
  type: Injectable,
24708
24710
  args: [{
24709
24711
  providedIn: 'root'
@@ -24737,10 +24739,10 @@ class CorelogicInterceptor {
24737
24739
  }
24738
24740
  });
24739
24741
  }
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 }); }
24742
+ 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 }); }
24743
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicInterceptor }); }
24742
24744
  }
24743
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicInterceptor, decorators: [{
24745
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicInterceptor, decorators: [{
24744
24746
  type: Injectable
24745
24747
  }], ctorParameters: () => [{ type: CorelogicService }, { type: undefined, decorators: [{
24746
24748
  type: Inject,
@@ -24776,10 +24778,10 @@ class FinancialYearInterceptor {
24776
24778
  }
24777
24779
  return next.handle(clonedReq);
24778
24780
  }
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 }); }
24781
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
24782
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearInterceptor }); }
24781
24783
  }
24782
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
24784
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
24783
24785
  type: Injectable
24784
24786
  }], ctorParameters: () => [{ type: undefined, decorators: [{
24785
24787
  type: Inject,
@@ -24813,10 +24815,10 @@ class UserSwitcherInterceptor {
24813
24815
  intercept(request, next) {
24814
24816
  return next.handle(this.switch(request, this.userSwitcherService.get()));
24815
24817
  }
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 }); }
24818
+ 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 }); }
24819
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherInterceptor }); }
24818
24820
  }
24819
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
24821
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
24820
24822
  type: Injectable
24821
24823
  }], ctorParameters: () => [{ type: UserSwitcherService }, { type: undefined, decorators: [{
24822
24824
  type: Inject,
@@ -25193,10 +25195,10 @@ class PreloaderInterceptor {
25193
25195
  findEndpoint(requestPath) {
25194
25196
  return Object.values(ENDPOINTS).find((endpoint) => endpoint.test(requestPath));
25195
25197
  }
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 }); }
25198
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable }); }
25199
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderInterceptor }); }
25198
25200
  }
25199
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderInterceptor, decorators: [{
25201
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderInterceptor, decorators: [{
25200
25202
  type: Injectable
25201
25203
  }], ctorParameters: () => [{ type: PreloaderService }] });
25202
25204
 
@@ -25231,10 +25233,10 @@ class RewardfulInterceptor {
25231
25233
  && (window['Rewardful'].referral || window['Rewardful'].coupon?.id)
25232
25234
  && registrationUrls.some(registrationUrl => request.url.includes(registrationUrl));
25233
25235
  }
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 }); }
25236
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RewardfulInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
25237
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RewardfulInterceptor }); }
25236
25238
  }
25237
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RewardfulInterceptor, decorators: [{
25239
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RewardfulInterceptor, decorators: [{
25238
25240
  type: Injectable
25239
25241
  }], ctorParameters: () => [{ type: undefined, decorators: [{
25240
25242
  type: Inject,
@@ -25263,10 +25265,10 @@ class AussieInterceptor {
25263
25265
  }
25264
25266
  });
25265
25267
  }
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 }); }
25268
+ 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 }); }
25269
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieInterceptor }); }
25268
25270
  }
25269
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieInterceptor, decorators: [{
25271
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieInterceptor, decorators: [{
25270
25272
  type: Injectable
25271
25273
  }], ctorParameters: () => [{ type: AussieService }, { type: undefined, decorators: [{
25272
25274
  type: Inject,
@@ -25305,10 +25307,10 @@ class AdBlockErrorInterceptor {
25305
25307
  }
25306
25308
  return next.handle(request);
25307
25309
  }
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 }); }
25310
+ 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 }); }
25311
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdBlockErrorInterceptor }); }
25310
25312
  }
25311
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdBlockErrorInterceptor, decorators: [{
25313
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdBlockErrorInterceptor, decorators: [{
25312
25314
  type: Injectable
25313
25315
  }], ctorParameters: () => [{ type: undefined, decorators: [{
25314
25316
  type: Inject,
@@ -25319,9 +25321,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImpor
25319
25321
  }] }] });
25320
25322
 
25321
25323
  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: [
25324
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
25325
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule }); }
25326
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, providers: [
25325
25327
  {
25326
25328
  provide: HTTP_INTERCEPTORS,
25327
25329
  useClass: CorelogicInterceptor,
@@ -25364,7 +25366,7 @@ class InterceptorsModule {
25364
25366
  }
25365
25367
  ] }); }
25366
25368
  }
25367
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, decorators: [{
25369
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, decorators: [{
25368
25370
  type: NgModule,
25369
25371
  args: [{
25370
25372
  providers: [
@@ -25416,13 +25418,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImpor
25416
25418
  * https://angular.io/guide/creating-libraries
25417
25419
  */
25418
25420
  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,
25421
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
25422
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
25421
25423
  InterceptorsModule] }); }
25422
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
25424
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
25423
25425
  InterceptorsModule] }); }
25424
25426
  }
25425
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CoreModule, decorators: [{
25427
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, decorators: [{
25426
25428
  type: NgModule,
25427
25429
  args: [{
25428
25430
  declarations: [],
@@ -25442,10 +25444,10 @@ class AppCurrencyPipe extends CurrencyPipe {
25442
25444
  digitsInfo = digitsInfo ?? '1.0-' + (value.toString().match(/[1-9]/)?.index || 2);
25443
25445
  return super.transform(value, currencyCode, display, digitsInfo, locale);
25444
25446
  }
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" }); }
25447
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppCurrencyPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
25448
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: AppCurrencyPipe, isStandalone: true, name: "appCurrency" }); }
25447
25449
  }
25448
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AppCurrencyPipe, decorators: [{
25450
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppCurrencyPipe, decorators: [{
25449
25451
  type: Pipe,
25450
25452
  args: [{
25451
25453
  name: 'appCurrency',
@@ -25460,10 +25462,10 @@ class AppPercentPipe {
25460
25462
  transform(value, total, floor) {
25461
25463
  return this.percentagePipe.transform(value, total, floor) + '%';
25462
25464
  }
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" }); }
25465
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppPercentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
25466
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: AppPercentPipe, isStandalone: true, name: "percentage" }); }
25465
25467
  }
25466
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AppPercentPipe, decorators: [{
25468
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppPercentPipe, decorators: [{
25467
25469
  type: Pipe,
25468
25470
  args: [{
25469
25471
  name: 'percentage',
@@ -25490,10 +25492,10 @@ class RelativeDatePipe {
25490
25492
  return this.datePipe.transform(date.toDate(), DateFormatsEnum.DATE_SLASH);
25491
25493
  }
25492
25494
  }
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" }); }
25495
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RelativeDatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
25496
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: RelativeDatePipe, isStandalone: true, name: "relativeDate" }); }
25495
25497
  }
25496
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RelativeDatePipe, decorators: [{
25498
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RelativeDatePipe, decorators: [{
25497
25499
  type: Pipe,
25498
25500
  args: [{
25499
25501
  name: 'relativeDate',
@@ -25508,10 +25510,10 @@ class SafeUrlPipe {
25508
25510
  transform(url) {
25509
25511
  return this.sanitizer.bypassSecurityTrustResourceUrl(url);
25510
25512
  }
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" }); }
25513
+ 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 }); }
25514
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
25513
25515
  }
25514
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SafeUrlPipe, decorators: [{
25516
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SafeUrlPipe, decorators: [{
25515
25517
  type: Pipe,
25516
25518
  args: [{
25517
25519
  name: 'safeUrl',
@@ -25864,10 +25866,10 @@ class BusinessResolver {
25864
25866
  resolve() {
25865
25867
  return this.soleDetailsService.getFirst();
25866
25868
  }
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' }); }
25869
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
25870
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessResolver, providedIn: 'root' }); }
25869
25871
  }
25870
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessResolver, decorators: [{
25872
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessResolver, decorators: [{
25871
25873
  type: Injectable,
25872
25874
  args: [{ providedIn: 'root' }]
25873
25875
  }], ctorParameters: () => [{ type: SoleDetailsService }] });
@@ -25879,10 +25881,10 @@ class SoleDetailsResolver {
25879
25881
  resolve() {
25880
25882
  return this.soleDetails.getFirst();
25881
25883
  }
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' }); }
25884
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
25885
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsResolver, providedIn: 'root' }); }
25884
25886
  }
25885
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsResolver, decorators: [{
25887
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsResolver, decorators: [{
25886
25888
  type: Injectable,
25887
25889
  args: [{ providedIn: 'root' }]
25888
25890
  }], ctorParameters: () => [{ type: SoleDetailsService }] });
@@ -26633,10 +26635,10 @@ class UniqueEmailValidator {
26633
26635
  validate(control) {
26634
26636
  return this.userService.search(control.value).pipe(map(user => user ? { emailIsUsed: true } : null));
26635
26637
  }
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' }); }
26638
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UniqueEmailValidator, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
26639
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UniqueEmailValidator, providedIn: 'root' }); }
26638
26640
  }
26639
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UniqueEmailValidator, decorators: [{
26641
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UniqueEmailValidator, decorators: [{
26640
26642
  type: Injectable,
26641
26643
  args: [{ providedIn: 'root' }]
26642
26644
  }], ctorParameters: () => [{ type: UserService }] });
@@ -27149,10 +27151,10 @@ class ClientMovementForm extends AbstractForm {
27149
27151
  firmBranch: new FormControl(clientMovement.firmBranch, [Validators.required]),
27150
27152
  }, clientMovement);
27151
27153
  }
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' }); }
27154
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementForm, deps: [{ token: ClientMovement }], target: i0.ɵɵFactoryTarget.Injectable }); }
27155
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementForm, providedIn: 'root' }); }
27154
27156
  }
27155
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementForm, decorators: [{
27157
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementForm, decorators: [{
27156
27158
  type: Injectable,
27157
27159
  args: [{
27158
27160
  providedIn: 'root'
@@ -27165,10 +27167,10 @@ class EmployeeDetailsForm extends AbstractForm {
27165
27167
  firmBranches: new FormControl(employeeDetails.firmBranches, [Validators.required]),
27166
27168
  }, employeeDetails);
27167
27169
  }
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' }); }
27170
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeDetailsForm, deps: [{ token: EmployeeDetails }], target: i0.ɵɵFactoryTarget.Injectable }); }
27171
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeDetailsForm, providedIn: 'root' }); }
27170
27172
  }
27171
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeDetailsForm, decorators: [{
27173
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeDetailsForm, decorators: [{
27172
27174
  type: Injectable,
27173
27175
  args: [{
27174
27176
  providedIn: 'root'