taxtank-core 3.0.13 → 3.0.15
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.
- package/README.md +5 -5
- package/fesm2022/taxtank-core-common.mjs +20 -20
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +504 -493
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +16 -15
- package/{index.d.ts → types/taxtank-core.d.ts} +3 -4
- package/types/taxtank-core.d.ts.map +1 -0
- /package/{common/index.d.ts → types/taxtank-core-common.d.ts} +0 -0
|
@@ -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: "
|
|
68
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
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' }); }
|
|
69
69
|
}
|
|
70
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
70
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfService, decorators: [{
|
|
71
71
|
type: Injectable,
|
|
72
72
|
args: [{
|
|
73
73
|
providedIn: 'root'
|
|
@@ -8241,7 +8241,19 @@ class DepreciationCollection extends TransactionBaseCollection {
|
|
|
8241
8241
|
getForecasts() {
|
|
8242
8242
|
return new DepreciationForecastCollection(this.map(depreciation => depreciation.forecasts).flat());
|
|
8243
8243
|
}
|
|
8244
|
-
getCurrentYearForecastAmount() {
|
|
8244
|
+
getCurrentYearForecastAmount(dateRange = null) {
|
|
8245
|
+
if (dateRange) {
|
|
8246
|
+
const financialYear = new FinancialYear();
|
|
8247
|
+
let amount = 0;
|
|
8248
|
+
this.items.forEach(depreciation => {
|
|
8249
|
+
const forecast = depreciation.currentYearForecast;
|
|
8250
|
+
const from = moment.max(moment(forecast.fromDate).startOf('day'), moment(dateRange[0] ?? financialYear.startDate).startOf('day'));
|
|
8251
|
+
const to = moment.min(moment(forecast.toDate).startOf('day'), moment(dateRange[1] ?? financialYear.endDate).startOf('day'));
|
|
8252
|
+
const days = to.diff(from, 'days');
|
|
8253
|
+
amount += depreciation.currentYearForecast.dailyClaimAmount * days;
|
|
8254
|
+
});
|
|
8255
|
+
return amount;
|
|
8256
|
+
}
|
|
8245
8257
|
return this.sumBy('currentYearForecast.amount');
|
|
8246
8258
|
}
|
|
8247
8259
|
get closeBalance() {
|
|
@@ -9125,10 +9137,9 @@ const DEPRECIATION_TYPE_LABELS = {
|
|
|
9125
9137
|
* Class with depreciation-based property transactions report entities
|
|
9126
9138
|
*/
|
|
9127
9139
|
class PropertyReportItemDepreciation extends PropertyReportItem {
|
|
9128
|
-
constructor(depreciations, property, chartAccounts) {
|
|
9140
|
+
constructor(depreciations, property, chartAccounts, dateRange) {
|
|
9129
9141
|
super(property, chartAccounts);
|
|
9130
|
-
this.
|
|
9131
|
-
this.amount = Math.abs(depreciations.getCurrentYearForecastAmount());
|
|
9142
|
+
this.amount = Math.abs(depreciations.getCurrentYearForecastAmount(dateRange));
|
|
9132
9143
|
this.description = DEPRECIATION_TYPE_LABELS[depreciations.first.type];
|
|
9133
9144
|
}
|
|
9134
9145
|
get claimAmount() {
|
|
@@ -9482,16 +9493,16 @@ class PropertyReportItemCollection extends Collection {
|
|
|
9482
9493
|
* Collection to work with depreciation-based property report items
|
|
9483
9494
|
*/
|
|
9484
9495
|
class PropertyReportItemDepreciationCollection extends PropertyReportItemCollection {
|
|
9485
|
-
constructor(depreciations, properties, chartAccounts) {
|
|
9496
|
+
constructor(depreciations, properties, chartAccounts, dateRange) {
|
|
9486
9497
|
super();
|
|
9487
|
-
this.setItems(depreciations, properties, chartAccounts);
|
|
9498
|
+
this.setItems(depreciations, properties, chartAccounts, dateRange);
|
|
9488
9499
|
}
|
|
9489
|
-
setItems(depreciations, properties, chartAccounts) {
|
|
9500
|
+
setItems(depreciations, properties, chartAccounts, dateRange) {
|
|
9490
9501
|
this.items = [];
|
|
9491
9502
|
properties.items.forEach((property) => {
|
|
9492
9503
|
const depreciationsByType = depreciations.filterBy('property.id', property.id).groupBy('type');
|
|
9493
9504
|
depreciationsByType.keys.map((type) => {
|
|
9494
|
-
this.items.push(new PropertyReportItemDepreciation(depreciationsByType.get(type), property, chartAccounts.findBy('id', depreciationsByType.get(type).first.chartAccounts.id)));
|
|
9505
|
+
this.items.push(new PropertyReportItemDepreciation(depreciationsByType.get(type), property, chartAccounts.findBy('id', depreciationsByType.get(type).first.chartAccounts.id), dateRange));
|
|
9495
9506
|
});
|
|
9496
9507
|
});
|
|
9497
9508
|
}
|
|
@@ -13255,10 +13266,10 @@ class EventDispatcherService {
|
|
|
13255
13266
|
dispatch2(event) {
|
|
13256
13267
|
this.eventSubject2.next(event);
|
|
13257
13268
|
}
|
|
13258
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13259
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13269
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13270
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EventDispatcherService, providedIn: 'root' }); }
|
|
13260
13271
|
}
|
|
13261
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13272
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EventDispatcherService, decorators: [{
|
|
13262
13273
|
type: Injectable,
|
|
13263
13274
|
args: [{
|
|
13264
13275
|
providedIn: 'root'
|
|
@@ -13293,10 +13304,10 @@ class SseService {
|
|
|
13293
13304
|
})
|
|
13294
13305
|
.pipe(map((messageEvent) => JSON.parse(messageEvent.data)));
|
|
13295
13306
|
}
|
|
13296
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13297
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13307
|
+
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 }); }
|
|
13308
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SseService, providedIn: 'root' }); }
|
|
13298
13309
|
}
|
|
13299
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13310
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SseService, decorators: [{
|
|
13300
13311
|
type: Injectable,
|
|
13301
13312
|
args: [{
|
|
13302
13313
|
providedIn: 'root'
|
|
@@ -13384,10 +13395,10 @@ class DataService {
|
|
|
13384
13395
|
setCache(data) {
|
|
13385
13396
|
this.cache = this.createCollectionInstance(this.collectionClass, data);
|
|
13386
13397
|
}
|
|
13387
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13388
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13398
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DataService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13399
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DataService, providedIn: 'root' }); }
|
|
13389
13400
|
}
|
|
13390
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13401
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DataService, decorators: [{
|
|
13391
13402
|
type: Injectable,
|
|
13392
13403
|
args: [{
|
|
13393
13404
|
providedIn: 'root'
|
|
@@ -13455,10 +13466,10 @@ class ToastService {
|
|
|
13455
13466
|
message,
|
|
13456
13467
|
}));
|
|
13457
13468
|
}
|
|
13458
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13459
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13469
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13470
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ToastService, providedIn: 'root' }); }
|
|
13460
13471
|
}
|
|
13461
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ToastService, decorators: [{
|
|
13462
13473
|
type: Injectable,
|
|
13463
13474
|
args: [{
|
|
13464
13475
|
providedIn: 'root'
|
|
@@ -13851,10 +13862,10 @@ let RestService$1 = class RestService extends DataService {
|
|
|
13851
13862
|
this.handleResponse([change.model], change.method);
|
|
13852
13863
|
});
|
|
13853
13864
|
}
|
|
13854
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13855
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13865
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13866
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
|
13856
13867
|
};
|
|
13857
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13868
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService$1, decorators: [{
|
|
13858
13869
|
type: Injectable,
|
|
13859
13870
|
args: [{
|
|
13860
13871
|
providedIn: 'root'
|
|
@@ -13997,10 +14008,10 @@ class BankAccountService extends RestService$1 {
|
|
|
13997
14008
|
}
|
|
13998
14009
|
});
|
|
13999
14010
|
}
|
|
14000
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14001
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14011
|
+
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 }); }
|
|
14012
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountService, providedIn: 'root' }); }
|
|
14002
14013
|
}
|
|
14003
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14014
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountService, decorators: [{
|
|
14004
14015
|
type: Injectable,
|
|
14005
14016
|
args: [{
|
|
14006
14017
|
providedIn: 'root'
|
|
@@ -14123,10 +14134,10 @@ class BankConnectionService extends RestService$1 {
|
|
|
14123
14134
|
}
|
|
14124
14135
|
});
|
|
14125
14136
|
}
|
|
14126
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14127
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14137
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankConnectionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14138
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankConnectionService, providedIn: 'root' }); }
|
|
14128
14139
|
}
|
|
14129
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14140
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankConnectionService, decorators: [{
|
|
14130
14141
|
type: Injectable,
|
|
14131
14142
|
args: [{
|
|
14132
14143
|
providedIn: 'root'
|
|
@@ -14172,10 +14183,10 @@ class BankTransactionService extends RestService$1 {
|
|
|
14172
14183
|
}
|
|
14173
14184
|
});
|
|
14174
14185
|
}
|
|
14175
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14176
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14186
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14187
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionService, providedIn: 'root' }); }
|
|
14177
14188
|
}
|
|
14178
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14189
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionService, decorators: [{
|
|
14179
14190
|
type: Injectable,
|
|
14180
14191
|
args: [{
|
|
14181
14192
|
providedIn: 'root'
|
|
@@ -14204,10 +14215,10 @@ class BankTransactionImportService extends RestService$1 {
|
|
|
14204
14215
|
formData.append('file', file);
|
|
14205
14216
|
return this.importFile(formData, `${this.environment.apiV2}/bank-accounts/${bankAccountId}/bank-transaction-imports`);
|
|
14206
14217
|
}
|
|
14207
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14208
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14218
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionImportService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14219
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionImportService, providedIn: 'root' }); }
|
|
14209
14220
|
}
|
|
14210
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14221
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionImportService, decorators: [{
|
|
14211
14222
|
type: Injectable,
|
|
14212
14223
|
args: [{
|
|
14213
14224
|
providedIn: 'root'
|
|
@@ -14252,10 +14263,10 @@ class BasiqTokenService extends RestService$1 {
|
|
|
14252
14263
|
const now = new Date().getTime();
|
|
14253
14264
|
return new BasiqToken(tokenResponse['access_token'], new Date(now + tokenResponse['expires_in'] * 1000));
|
|
14254
14265
|
}
|
|
14255
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14256
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14266
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14267
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqTokenService, providedIn: 'root' }); }
|
|
14257
14268
|
}
|
|
14258
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14269
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqTokenService, decorators: [{
|
|
14259
14270
|
type: Injectable,
|
|
14260
14271
|
args: [{
|
|
14261
14272
|
providedIn: 'root'
|
|
@@ -14297,10 +14308,10 @@ class BasiqService extends RestService$1 {
|
|
|
14297
14308
|
}
|
|
14298
14309
|
});
|
|
14299
14310
|
}
|
|
14300
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14301
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14311
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14312
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqService, providedIn: 'root' }); }
|
|
14302
14313
|
}
|
|
14303
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqService, decorators: [{
|
|
14304
14315
|
type: Injectable,
|
|
14305
14316
|
args: [{
|
|
14306
14317
|
providedIn: 'root'
|
|
@@ -14363,10 +14374,10 @@ class MixpanelService {
|
|
|
14363
14374
|
}
|
|
14364
14375
|
mixpanel['track_pageview']();
|
|
14365
14376
|
}
|
|
14366
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14367
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14377
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MixpanelService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14378
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MixpanelService, providedIn: 'root' }); }
|
|
14368
14379
|
}
|
|
14369
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14380
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MixpanelService, decorators: [{
|
|
14370
14381
|
type: Injectable,
|
|
14371
14382
|
args: [{
|
|
14372
14383
|
providedIn: 'root'
|
|
@@ -14433,10 +14444,10 @@ class JwtService extends JwtHelperService {
|
|
|
14433
14444
|
isMe(userId) {
|
|
14434
14445
|
return this.decode().id === userId;
|
|
14435
14446
|
}
|
|
14436
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14437
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14447
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14448
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtService, providedIn: 'root' }); }
|
|
14438
14449
|
}
|
|
14439
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtService, decorators: [{
|
|
14440
14451
|
type: Injectable,
|
|
14441
14452
|
args: [{
|
|
14442
14453
|
providedIn: 'root'
|
|
@@ -14477,10 +14488,10 @@ class AuthService {
|
|
|
14477
14488
|
this.jwtService.destroyTokens();
|
|
14478
14489
|
location.replace(url);
|
|
14479
14490
|
}
|
|
14480
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14481
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14491
|
+
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 }); }
|
|
14492
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AuthService, providedIn: 'root' }); }
|
|
14482
14493
|
}
|
|
14483
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14494
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AuthService, decorators: [{
|
|
14484
14495
|
type: Injectable,
|
|
14485
14496
|
args: [{
|
|
14486
14497
|
providedIn: 'root'
|
|
@@ -14617,10 +14628,10 @@ class JwtInterceptor {
|
|
|
14617
14628
|
// });
|
|
14618
14629
|
});
|
|
14619
14630
|
}
|
|
14620
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14621
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14631
|
+
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 }); }
|
|
14632
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtInterceptor }); }
|
|
14622
14633
|
}
|
|
14623
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14634
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtInterceptor, decorators: [{
|
|
14624
14635
|
type: Injectable
|
|
14625
14636
|
}], ctorParameters: () => [{ type: JwtService }, { type: AuthService }, { type: undefined, decorators: [{
|
|
14626
14637
|
type: Inject,
|
|
@@ -14628,9 +14639,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
|
|
|
14628
14639
|
}] }] });
|
|
14629
14640
|
|
|
14630
14641
|
let InterceptorsModule$1 = class InterceptorsModule {
|
|
14631
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14632
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
14633
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
14642
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
14643
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule }); }
|
|
14644
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, providers: [
|
|
14634
14645
|
{
|
|
14635
14646
|
provide: HTTP_INTERCEPTORS,
|
|
14636
14647
|
useClass: JwtInterceptor,
|
|
@@ -14638,7 +14649,7 @@ let InterceptorsModule$1 = class InterceptorsModule {
|
|
|
14638
14649
|
}
|
|
14639
14650
|
] }); }
|
|
14640
14651
|
};
|
|
14641
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14652
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule$1, decorators: [{
|
|
14642
14653
|
type: NgModule,
|
|
14643
14654
|
args: [{
|
|
14644
14655
|
providers: [
|
|
@@ -14668,13 +14679,13 @@ class CommonModule {
|
|
|
14668
14679
|
]
|
|
14669
14680
|
};
|
|
14670
14681
|
}
|
|
14671
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14672
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
14682
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
14683
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
|
|
14673
14684
|
InterceptorsModule$1] }); }
|
|
14674
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
14685
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
|
|
14675
14686
|
InterceptorsModule$1] }); }
|
|
14676
14687
|
}
|
|
14677
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14688
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CommonModule, decorators: [{
|
|
14678
14689
|
type: NgModule,
|
|
14679
14690
|
args: [{
|
|
14680
14691
|
declarations: [],
|
|
@@ -14749,10 +14760,10 @@ class BasiqUserService extends RestService$1 {
|
|
|
14749
14760
|
window.location.replace(url);
|
|
14750
14761
|
}));
|
|
14751
14762
|
}
|
|
14752
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14753
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14763
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqUserService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14764
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqUserService, providedIn: 'root' }); }
|
|
14754
14765
|
}
|
|
14755
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14766
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqUserService, decorators: [{
|
|
14756
14767
|
type: Injectable,
|
|
14757
14768
|
args: [{
|
|
14758
14769
|
providedIn: 'root'
|
|
@@ -14770,10 +14781,10 @@ class BankTransactionCommentService extends RestService$1 {
|
|
|
14770
14781
|
this.endpointUri = 'bank-transaction-comments';
|
|
14771
14782
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
14772
14783
|
}
|
|
14773
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14774
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14784
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionCommentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14785
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionCommentService, providedIn: 'root' }); }
|
|
14775
14786
|
}
|
|
14776
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14787
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionCommentService, decorators: [{
|
|
14777
14788
|
type: Injectable,
|
|
14778
14789
|
args: [{
|
|
14779
14790
|
providedIn: 'root'
|
|
@@ -14799,10 +14810,10 @@ class BankService extends RestService$1 {
|
|
|
14799
14810
|
this.endpointUri = 'banks';
|
|
14800
14811
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
14801
14812
|
}
|
|
14802
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14803
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14813
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14814
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankService, providedIn: 'root' }); }
|
|
14804
14815
|
}
|
|
14805
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14816
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankService, decorators: [{
|
|
14806
14817
|
type: Injectable,
|
|
14807
14818
|
args: [{
|
|
14808
14819
|
providedIn: 'root'
|
|
@@ -14828,10 +14839,10 @@ class ExchangeRateService extends RestService$1 {
|
|
|
14828
14839
|
this.collectionClass = Collection;
|
|
14829
14840
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
14830
14841
|
}
|
|
14831
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14832
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14842
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExchangeRateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14843
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExchangeRateService, providedIn: 'root' }); }
|
|
14833
14844
|
}
|
|
14834
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14845
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExchangeRateService, decorators: [{
|
|
14835
14846
|
type: Injectable,
|
|
14836
14847
|
args: [{
|
|
14837
14848
|
providedIn: 'root'
|
|
@@ -14847,10 +14858,10 @@ class BudgetService extends RestService$1 {
|
|
|
14847
14858
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
14848
14859
|
this.roles = [UserRolesEnum.MONEY_TANK];
|
|
14849
14860
|
}
|
|
14850
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14851
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14861
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14862
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' }); }
|
|
14852
14863
|
}
|
|
14853
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14864
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetService, decorators: [{
|
|
14854
14865
|
type: Injectable,
|
|
14855
14866
|
args: [{
|
|
14856
14867
|
providedIn: 'root'
|
|
@@ -14874,10 +14885,10 @@ class BudgetRuleService extends RestService$1 {
|
|
|
14874
14885
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
14875
14886
|
this.roles = [UserRolesEnum.MONEY_TANK];
|
|
14876
14887
|
}
|
|
14877
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14878
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14888
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14889
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetRuleService, providedIn: 'root' }); }
|
|
14879
14890
|
}
|
|
14880
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14891
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetRuleService, decorators: [{
|
|
14881
14892
|
type: Injectable,
|
|
14882
14893
|
args: [{
|
|
14883
14894
|
providedIn: 'root'
|
|
@@ -14903,10 +14914,10 @@ class FinancialGoalService extends RestService$1 {
|
|
|
14903
14914
|
complete(goal) {
|
|
14904
14915
|
return this.put(Object.assign({}, goal, { status: FinancialGoalStatusEnum.COMPLETE, finalValue: goal.bankAccount.convertedBalance }));
|
|
14905
14916
|
}
|
|
14906
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14907
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14917
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialGoalService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14918
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialGoalService, providedIn: 'root' }); }
|
|
14908
14919
|
}
|
|
14909
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialGoalService, decorators: [{
|
|
14910
14921
|
type: Injectable,
|
|
14911
14922
|
args: [{
|
|
14912
14923
|
providedIn: 'root'
|
|
@@ -14937,10 +14948,10 @@ class CalendarReminderService extends RestService$1 {
|
|
|
14937
14948
|
this.listenCSE(SoleBusiness, this.refreshCache, ['put']);
|
|
14938
14949
|
this.listenCSE(IncomeSource, this.refreshCache, ['put']);
|
|
14939
14950
|
}
|
|
14940
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14941
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14951
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CalendarReminderService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14952
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CalendarReminderService, providedIn: 'root' }); }
|
|
14942
14953
|
}
|
|
14943
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14954
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CalendarReminderService, decorators: [{
|
|
14944
14955
|
type: Injectable,
|
|
14945
14956
|
args: [{
|
|
14946
14957
|
providedIn: 'root',
|
|
@@ -14969,10 +14980,10 @@ class ChartAccountsDepreciationService extends RestService$1 {
|
|
|
14969
14980
|
this.collectionClass = Collection;
|
|
14970
14981
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
14971
14982
|
}
|
|
14972
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14973
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14983
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14984
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' }); }
|
|
14974
14985
|
}
|
|
14975
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14986
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
|
|
14976
14987
|
type: Injectable,
|
|
14977
14988
|
args: [{
|
|
14978
14989
|
providedIn: 'root'
|
|
@@ -15011,10 +15022,10 @@ class ChartAccountsService extends RestService$1 {
|
|
|
15011
15022
|
return headings;
|
|
15012
15023
|
}));
|
|
15013
15024
|
}
|
|
15014
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15015
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15025
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15026
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsService, providedIn: 'root' }); }
|
|
15016
15027
|
}
|
|
15017
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15028
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsService, decorators: [{
|
|
15018
15029
|
type: Injectable,
|
|
15019
15030
|
args: [{
|
|
15020
15031
|
providedIn: 'root'
|
|
@@ -15098,10 +15109,10 @@ class ChatService extends RestService$1 {
|
|
|
15098
15109
|
this.setCache(cache, true);
|
|
15099
15110
|
}, ['post']);
|
|
15100
15111
|
}
|
|
15101
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15102
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15112
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChatService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15113
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChatService, providedIn: 'root' }); }
|
|
15103
15114
|
}
|
|
15104
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15115
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChatService, decorators: [{
|
|
15105
15116
|
type: Injectable,
|
|
15106
15117
|
args: [{
|
|
15107
15118
|
providedIn: 'root'
|
|
@@ -15131,10 +15142,10 @@ class MessageService extends RestService$1 {
|
|
|
15131
15142
|
getUnreadChatsAmount() {
|
|
15132
15143
|
return this.get().pipe(map((messages) => messages.getUnreadChatsAmount()));
|
|
15133
15144
|
}
|
|
15134
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15135
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15145
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15146
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageService, providedIn: 'root' }); }
|
|
15136
15147
|
}
|
|
15137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15148
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageService, decorators: [{
|
|
15138
15149
|
type: Injectable,
|
|
15139
15150
|
args: [{
|
|
15140
15151
|
providedIn: 'root'
|
|
@@ -15203,10 +15214,10 @@ class MessageDocumentService extends RestService$1 {
|
|
|
15203
15214
|
addBatch(chatId, files) {
|
|
15204
15215
|
return combineLatest(files.map((file) => this.add(chatId, file))).pipe(map((docsBase) => docsBase.map((docBase) => plainToClass(MessageDocument, docBase))));
|
|
15205
15216
|
}
|
|
15206
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15207
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15217
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageDocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15218
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageDocumentService, providedIn: 'root' }); }
|
|
15208
15219
|
}
|
|
15209
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15220
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageDocumentService, decorators: [{
|
|
15210
15221
|
type: Injectable,
|
|
15211
15222
|
args: [{
|
|
15212
15223
|
providedIn: 'root'
|
|
@@ -15227,10 +15238,10 @@ class DashboardSettingsService extends RestService$1 {
|
|
|
15227
15238
|
this.endpointUri = 'dashboard-settings';
|
|
15228
15239
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
|
|
15229
15240
|
}
|
|
15230
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15231
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15241
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DashboardSettingsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15242
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DashboardSettingsService, providedIn: 'root' }); }
|
|
15232
15243
|
}
|
|
15233
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15244
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DashboardSettingsService, decorators: [{
|
|
15234
15245
|
type: Injectable,
|
|
15235
15246
|
args: [{
|
|
15236
15247
|
providedIn: 'root'
|
|
@@ -15320,10 +15331,10 @@ class DepreciationService extends RestService$1 {
|
|
|
15320
15331
|
this.refreshCache();
|
|
15321
15332
|
});
|
|
15322
15333
|
}
|
|
15323
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15324
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15334
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15335
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationService, providedIn: 'root' }); }
|
|
15325
15336
|
}
|
|
15326
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15337
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationService, decorators: [{
|
|
15327
15338
|
type: Injectable,
|
|
15328
15339
|
args: [{
|
|
15329
15340
|
providedIn: 'root'
|
|
@@ -15345,10 +15356,10 @@ class DepreciationCapitalProjectService extends RestService$1 {
|
|
|
15345
15356
|
this.endpointUri = 'depreciation-capital-projects';
|
|
15346
15357
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
15347
15358
|
}
|
|
15348
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15349
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15359
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationCapitalProjectService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15360
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' }); }
|
|
15350
15361
|
}
|
|
15351
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15362
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
|
|
15352
15363
|
type: Injectable,
|
|
15353
15364
|
args: [{
|
|
15354
15365
|
providedIn: 'root'
|
|
@@ -15371,10 +15382,10 @@ class PriorDepreciationService extends RestService$1 {
|
|
|
15371
15382
|
const financialYear = new FinancialYear(new FinancialYear().year - 1);
|
|
15372
15383
|
return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(depreciations => depreciations.filterByFinancialYear('date', null, financialYear)));
|
|
15373
15384
|
}
|
|
15374
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15375
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15385
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15386
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorDepreciationService, providedIn: 'root' }); }
|
|
15376
15387
|
}
|
|
15377
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorDepreciationService, decorators: [{
|
|
15378
15389
|
type: Injectable,
|
|
15379
15390
|
args: [{
|
|
15380
15391
|
providedIn: 'root'
|
|
@@ -15400,10 +15411,10 @@ class DocumentFolderService extends RestService$1 {
|
|
|
15400
15411
|
this.modelClass = DocumentFolder;
|
|
15401
15412
|
this.disabledMethods = ['deleteBatch', 'postBatch', 'putBatch'];
|
|
15402
15413
|
}
|
|
15403
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15404
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15414
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15415
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentFolderService, providedIn: 'root' }); }
|
|
15405
15416
|
}
|
|
15406
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15417
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentFolderService, decorators: [{
|
|
15407
15418
|
type: Injectable,
|
|
15408
15419
|
args: [{
|
|
15409
15420
|
providedIn: 'root'
|
|
@@ -15428,10 +15439,10 @@ class DocumentService extends RestService$1 {
|
|
|
15428
15439
|
postFiles(folder, files) {
|
|
15429
15440
|
return this.postParallel(files.map(file => plainToClass(Document, { folder, file })));
|
|
15430
15441
|
}
|
|
15431
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15432
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15442
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15443
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentService, providedIn: 'root' }); }
|
|
15433
15444
|
}
|
|
15434
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15445
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentService, decorators: [{
|
|
15435
15446
|
type: Injectable,
|
|
15436
15447
|
args: [{
|
|
15437
15448
|
providedIn: 'root'
|
|
@@ -15516,10 +15527,10 @@ class FacebookService {
|
|
|
15516
15527
|
});
|
|
15517
15528
|
});
|
|
15518
15529
|
}
|
|
15519
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15520
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15530
|
+
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 }); }
|
|
15531
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FacebookService, providedIn: 'root' }); }
|
|
15521
15532
|
}
|
|
15522
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15533
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FacebookService, decorators: [{
|
|
15523
15534
|
type: Injectable,
|
|
15524
15535
|
args: [{
|
|
15525
15536
|
providedIn: 'root'
|
|
@@ -15586,10 +15597,10 @@ class GoogleService {
|
|
|
15586
15597
|
logout() {
|
|
15587
15598
|
google.accounts.id.disableAutoSelect();
|
|
15588
15599
|
}
|
|
15589
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15590
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15600
|
+
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 }); }
|
|
15601
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GoogleService, providedIn: 'root' }); }
|
|
15591
15602
|
}
|
|
15592
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15603
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GoogleService, decorators: [{
|
|
15593
15604
|
type: Injectable,
|
|
15594
15605
|
args: [{
|
|
15595
15606
|
providedIn: 'root'
|
|
@@ -15621,10 +15632,10 @@ class FileService extends RestService$1 {
|
|
|
15621
15632
|
download(file) {
|
|
15622
15633
|
return this.http.get(`${this.apiUrl}/${file.id}/download`, { responseType: 'blob' });
|
|
15623
15634
|
}
|
|
15624
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15625
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15635
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15636
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FileService, providedIn: 'root' }); }
|
|
15626
15637
|
}
|
|
15627
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15638
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FileService, decorators: [{
|
|
15628
15639
|
type: Injectable,
|
|
15629
15640
|
args: [{
|
|
15630
15641
|
providedIn: 'root'
|
|
@@ -15714,10 +15725,10 @@ class ClientInviteService extends RestService$1 {
|
|
|
15714
15725
|
}
|
|
15715
15726
|
});
|
|
15716
15727
|
}
|
|
15717
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15718
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15728
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientInviteService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15729
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientInviteService, providedIn: 'root' }); }
|
|
15719
15730
|
}
|
|
15720
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15731
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientInviteService, decorators: [{
|
|
15721
15732
|
type: Injectable,
|
|
15722
15733
|
args: [{
|
|
15723
15734
|
providedIn: 'root'
|
|
@@ -15807,10 +15818,10 @@ class ClientMovementService extends RestService$1 {
|
|
|
15807
15818
|
// this.updateCache([clientMovement], 'delete');
|
|
15808
15819
|
}));
|
|
15809
15820
|
}
|
|
15810
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15811
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15821
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15822
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementService, providedIn: 'root' }); }
|
|
15812
15823
|
}
|
|
15813
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15824
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementService, decorators: [{
|
|
15814
15825
|
type: Injectable,
|
|
15815
15826
|
args: [{
|
|
15816
15827
|
providedIn: 'root'
|
|
@@ -15871,10 +15882,10 @@ class EmployeeService extends RestService$1 {
|
|
|
15871
15882
|
index === -1 ? employee.roles.push(role) : employee.roles.splice(index, 1);
|
|
15872
15883
|
return super.put(employee, `${this.environment.apiV2}/${this.endpointUri}/${employee.id}`);
|
|
15873
15884
|
}
|
|
15874
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15875
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15885
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15886
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeService, providedIn: 'root' }); }
|
|
15876
15887
|
}
|
|
15877
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15888
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeService, decorators: [{
|
|
15878
15889
|
type: Injectable,
|
|
15879
15890
|
args: [{
|
|
15880
15891
|
providedIn: 'root'
|
|
@@ -15935,10 +15946,10 @@ class EmployeeInviteService extends RestService$1 {
|
|
|
15935
15946
|
return updatedInvite;
|
|
15936
15947
|
}));
|
|
15937
15948
|
}
|
|
15938
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15939
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15949
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15950
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' }); }
|
|
15940
15951
|
}
|
|
15941
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15952
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeInviteService, decorators: [{
|
|
15942
15953
|
type: Injectable,
|
|
15943
15954
|
args: [{
|
|
15944
15955
|
providedIn: 'root'
|
|
@@ -15962,10 +15973,10 @@ class ClientPortfolioReportService {
|
|
|
15962
15973
|
return new ClientPortfolioReportCollection(clientReports);
|
|
15963
15974
|
}));
|
|
15964
15975
|
}
|
|
15965
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15966
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15976
|
+
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 }); }
|
|
15977
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' }); }
|
|
15967
15978
|
}
|
|
15968
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15979
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
|
|
15969
15980
|
type: Injectable,
|
|
15970
15981
|
args: [{
|
|
15971
15982
|
providedIn: 'root'
|
|
@@ -16009,10 +16020,10 @@ class FirmService {
|
|
|
16009
16020
|
this.firmSubject.next(updatedInstance);
|
|
16010
16021
|
}));
|
|
16011
16022
|
}
|
|
16012
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16013
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16023
|
+
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 }); }
|
|
16024
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmService, providedIn: 'root' }); }
|
|
16014
16025
|
}
|
|
16015
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16026
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmService, decorators: [{
|
|
16016
16027
|
type: Injectable,
|
|
16017
16028
|
args: [{
|
|
16018
16029
|
providedIn: 'root'
|
|
@@ -16030,10 +16041,10 @@ class FirmBranchService extends RestService$1 {
|
|
|
16030
16041
|
this.collectionClass = (Collection);
|
|
16031
16042
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
16032
16043
|
}
|
|
16033
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16034
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16044
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmBranchService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16045
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmBranchService, providedIn: 'root' }); }
|
|
16035
16046
|
}
|
|
16036
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16047
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmBranchService, decorators: [{
|
|
16037
16048
|
type: Injectable,
|
|
16038
16049
|
args: [{
|
|
16039
16050
|
providedIn: 'root'
|
|
@@ -16274,10 +16285,10 @@ class RestService {
|
|
|
16274
16285
|
getCache() {
|
|
16275
16286
|
return clone(this.cache);
|
|
16276
16287
|
}
|
|
16277
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16278
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16288
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16289
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
|
16279
16290
|
}
|
|
16280
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16291
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, decorators: [{
|
|
16281
16292
|
type: Injectable,
|
|
16282
16293
|
args: [{
|
|
16283
16294
|
providedIn: 'root'
|
|
@@ -16352,10 +16363,10 @@ class IncomeSourceForecastService extends RestService {
|
|
|
16352
16363
|
return incomeSource.incomeSourceForecasts;
|
|
16353
16364
|
}).flat();
|
|
16354
16365
|
}
|
|
16355
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16356
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16366
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16367
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' }); }
|
|
16357
16368
|
}
|
|
16358
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16369
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
|
|
16359
16370
|
type: Injectable,
|
|
16360
16371
|
args: [{
|
|
16361
16372
|
providedIn: 'root'
|
|
@@ -16429,10 +16440,10 @@ class SalaryForecastService extends RestService {
|
|
|
16429
16440
|
return incomeSource.salaryForecasts;
|
|
16430
16441
|
}).flat();
|
|
16431
16442
|
}
|
|
16432
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16433
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16443
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SalaryForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16444
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SalaryForecastService, providedIn: 'root' }); }
|
|
16434
16445
|
}
|
|
16435
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16446
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SalaryForecastService, decorators: [{
|
|
16436
16447
|
type: Injectable,
|
|
16437
16448
|
args: [{
|
|
16438
16449
|
providedIn: 'root'
|
|
@@ -16514,10 +16525,10 @@ class SoleForecastService extends RestService {
|
|
|
16514
16525
|
this.refreshCache();
|
|
16515
16526
|
});
|
|
16516
16527
|
}
|
|
16517
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16518
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16528
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16529
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleForecastService, providedIn: 'root' }); }
|
|
16519
16530
|
}
|
|
16520
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16531
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleForecastService, decorators: [{
|
|
16521
16532
|
type: Injectable,
|
|
16522
16533
|
args: [{
|
|
16523
16534
|
providedIn: 'root'
|
|
@@ -16600,10 +16611,10 @@ class IncomeSourceService extends RestService {
|
|
|
16600
16611
|
this.refreshCache();
|
|
16601
16612
|
});
|
|
16602
16613
|
}
|
|
16603
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16604
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16614
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16615
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceService, providedIn: 'root' }); }
|
|
16605
16616
|
}
|
|
16606
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16617
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceService, decorators: [{
|
|
16607
16618
|
type: Injectable,
|
|
16608
16619
|
args: [{
|
|
16609
16620
|
providedIn: 'root'
|
|
@@ -16676,10 +16687,10 @@ class BorrowingExpenseService {
|
|
|
16676
16687
|
return combinedBorrowingExpenses;
|
|
16677
16688
|
}));
|
|
16678
16689
|
}
|
|
16679
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16680
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16690
|
+
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 }); }
|
|
16691
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' }); }
|
|
16681
16692
|
}
|
|
16682
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16693
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingExpenseService, decorators: [{
|
|
16683
16694
|
type: Injectable,
|
|
16684
16695
|
args: [{
|
|
16685
16696
|
providedIn: 'root'
|
|
@@ -16763,10 +16774,10 @@ class LoanService extends RestService$1 {
|
|
|
16763
16774
|
delete(loan) {
|
|
16764
16775
|
return super.delete(loan, `${this.environment.apiV2}/loans/${loan.id}`);
|
|
16765
16776
|
}
|
|
16766
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16767
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16777
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: LoanService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16778
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: LoanService, providedIn: 'root' }); }
|
|
16768
16779
|
}
|
|
16769
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16780
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: LoanService, decorators: [{
|
|
16770
16781
|
type: Injectable,
|
|
16771
16782
|
args: [{
|
|
16772
16783
|
providedIn: 'root'
|
|
@@ -16792,10 +16803,10 @@ class BorrowingReportService extends RestService$1 {
|
|
|
16792
16803
|
this.collectionClass = Collection;
|
|
16793
16804
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
16794
16805
|
}
|
|
16795
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16796
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16806
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16807
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingReportService, providedIn: 'root' }); }
|
|
16797
16808
|
}
|
|
16798
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16809
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingReportService, decorators: [{
|
|
16799
16810
|
type: Injectable,
|
|
16800
16811
|
args: [{
|
|
16801
16812
|
providedIn: 'root'
|
|
@@ -16820,10 +16831,10 @@ class PropertyCategoryService extends RestService$1 {
|
|
|
16820
16831
|
this.endpointUri = 'properties/categories';
|
|
16821
16832
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
16822
16833
|
}
|
|
16823
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16824
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16834
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16835
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' }); }
|
|
16825
16836
|
}
|
|
16826
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16837
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryService, decorators: [{
|
|
16827
16838
|
type: Injectable,
|
|
16828
16839
|
args: [{
|
|
16829
16840
|
providedIn: 'root'
|
|
@@ -16845,10 +16856,10 @@ class PropertyCategoryMovementService extends RestService$1 {
|
|
|
16845
16856
|
this.listenCSE(Property, this.refreshCache, ['post']);
|
|
16846
16857
|
this.listenCSE(PropertyValuation, this.refreshCache);
|
|
16847
16858
|
}
|
|
16848
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16849
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16859
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16860
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' }); }
|
|
16850
16861
|
}
|
|
16851
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16862
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
|
|
16852
16863
|
type: Injectable,
|
|
16853
16864
|
args: [{
|
|
16854
16865
|
providedIn: 'root'
|
|
@@ -16929,10 +16940,10 @@ class TaxExemptionService extends DataService {
|
|
|
16929
16940
|
this.collectionClass = TaxExemptionCollection;
|
|
16930
16941
|
this.setCache(TaxExemptions);
|
|
16931
16942
|
}
|
|
16932
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16933
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16943
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxExemptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16944
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxExemptionService, providedIn: 'root' }); }
|
|
16934
16945
|
}
|
|
16935
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16946
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxExemptionService, decorators: [{
|
|
16936
16947
|
type: Injectable,
|
|
16937
16948
|
args: [{
|
|
16938
16949
|
providedIn: 'root'
|
|
@@ -16948,10 +16959,10 @@ class PropertySaleService extends RestService$1 {
|
|
|
16948
16959
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
16949
16960
|
this.roles = [UserRolesEnum$1.PROPERTY_TANK];
|
|
16950
16961
|
}
|
|
16951
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16952
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16962
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16963
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertySaleService, providedIn: 'root' }); }
|
|
16953
16964
|
}
|
|
16954
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16965
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertySaleService, decorators: [{
|
|
16955
16966
|
type: Injectable,
|
|
16956
16967
|
args: [{
|
|
16957
16968
|
providedIn: 'root'
|
|
@@ -17005,10 +17016,10 @@ class PropertyShareService extends RestService$1 {
|
|
|
17005
17016
|
listenSalesChanges() {
|
|
17006
17017
|
this.listenCSE(PropertySale, this.refreshCache, ['post', 'delete']);
|
|
17007
17018
|
}
|
|
17008
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17009
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17019
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyShareService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17020
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyShareService, providedIn: 'root' }); }
|
|
17010
17021
|
}
|
|
17011
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17022
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyShareService, decorators: [{
|
|
17012
17023
|
type: Injectable,
|
|
17013
17024
|
args: [{
|
|
17014
17025
|
providedIn: 'root'
|
|
@@ -17027,10 +17038,10 @@ class PropertyValuationService extends RestService$1 {
|
|
|
17027
17038
|
this.disabledMethods = ['postBatch', 'putBatch'];
|
|
17028
17039
|
this.useBackendError = true;
|
|
17029
17040
|
}
|
|
17030
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17031
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17041
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyValuationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17042
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyValuationService, providedIn: 'root' }); }
|
|
17032
17043
|
}
|
|
17033
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17044
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyValuationService, decorators: [{
|
|
17034
17045
|
type: Injectable,
|
|
17035
17046
|
args: [{
|
|
17036
17047
|
providedIn: 'root'
|
|
@@ -17174,10 +17185,10 @@ class PropertyService extends RestService$1 {
|
|
|
17174
17185
|
return of({ growthPercent: 0, lowMarketValue: 0, marketValue: 0, highMarketValue: 0, confidence: PropertyCorelogicStatsConfidenceTypeEnum.LOW });
|
|
17175
17186
|
}));
|
|
17176
17187
|
}
|
|
17177
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17178
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17188
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17189
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
|
|
17179
17190
|
}
|
|
17180
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17191
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyService, decorators: [{
|
|
17181
17192
|
type: Injectable,
|
|
17182
17193
|
args: [{
|
|
17183
17194
|
providedIn: 'root'
|
|
@@ -17234,10 +17245,10 @@ class ServiceNotificationService extends RestService {
|
|
|
17234
17245
|
this.eventDispatcherService.dispatch(new AppEvent(AppEventTypeEnum.NOTIFICATION_ADDED, notification));
|
|
17235
17246
|
});
|
|
17236
17247
|
}
|
|
17237
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17238
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17248
|
+
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 }); }
|
|
17249
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' }); }
|
|
17239
17250
|
}
|
|
17240
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17251
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceNotificationService, decorators: [{
|
|
17241
17252
|
type: Injectable,
|
|
17242
17253
|
args: [{
|
|
17243
17254
|
providedIn: 'root'
|
|
@@ -17266,10 +17277,10 @@ class SoleBusinessService extends RestService$1 {
|
|
|
17266
17277
|
this.roles = [UserRolesEnum$1.SOLE_TANK];
|
|
17267
17278
|
this.useBackendError = true;
|
|
17268
17279
|
}
|
|
17269
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17270
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17280
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17281
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessService, providedIn: 'root' }); }
|
|
17271
17282
|
}
|
|
17272
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17283
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessService, decorators: [{
|
|
17273
17284
|
type: Injectable,
|
|
17274
17285
|
args: [{
|
|
17275
17286
|
providedIn: 'root'
|
|
@@ -17282,10 +17293,10 @@ class SoleBusinessActivityService extends RestService {
|
|
|
17282
17293
|
this.modelClass = SoleBusinessActivity;
|
|
17283
17294
|
this.url = 'sole-business-activities';
|
|
17284
17295
|
}
|
|
17285
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17286
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17296
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17297
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' }); }
|
|
17287
17298
|
}
|
|
17288
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17299
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
|
|
17289
17300
|
type: Injectable,
|
|
17290
17301
|
args: [{
|
|
17291
17302
|
providedIn: 'root'
|
|
@@ -17314,10 +17325,10 @@ class SoleBusinessLossService extends RestService$1 {
|
|
|
17314
17325
|
this.refreshCache();
|
|
17315
17326
|
});
|
|
17316
17327
|
}
|
|
17317
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17318
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17328
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17329
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' }); }
|
|
17319
17330
|
}
|
|
17320
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17331
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossService, decorators: [{
|
|
17321
17332
|
type: Injectable,
|
|
17322
17333
|
args: [{
|
|
17323
17334
|
providedIn: 'root'
|
|
@@ -17336,10 +17347,10 @@ class SoleBusinessLossOffsetRuleService extends RestService {
|
|
|
17336
17347
|
this.modelClass = SoleBusinessLossOffsetRule;
|
|
17337
17348
|
this.url = 'sole-business-loss-offset-rules';
|
|
17338
17349
|
}
|
|
17339
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17340
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17350
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17351
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' }); }
|
|
17341
17352
|
}
|
|
17342
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17353
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
|
|
17343
17354
|
type: Injectable,
|
|
17344
17355
|
args: [{
|
|
17345
17356
|
providedIn: 'root'
|
|
@@ -17355,10 +17366,10 @@ class SoleContactService extends RestService$1 {
|
|
|
17355
17366
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
17356
17367
|
this.useBackendError = true;
|
|
17357
17368
|
}
|
|
17358
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17359
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17369
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17370
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleContactService, providedIn: 'root' }); }
|
|
17360
17371
|
}
|
|
17361
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17372
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleContactService, decorators: [{
|
|
17362
17373
|
type: Injectable,
|
|
17363
17374
|
args: [{
|
|
17364
17375
|
providedIn: 'root'
|
|
@@ -17385,10 +17396,10 @@ class BusinessDepreciationMethodService extends RestService$1 {
|
|
|
17385
17396
|
this.roles = [UserRolesEnum.SOLE_TANK];
|
|
17386
17397
|
this.useBackendError = true;
|
|
17387
17398
|
}
|
|
17388
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17389
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17399
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessDepreciationMethodService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17400
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessDepreciationMethodService, providedIn: 'root' }); }
|
|
17390
17401
|
}
|
|
17391
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17402
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessDepreciationMethodService, decorators: [{
|
|
17392
17403
|
type: Injectable,
|
|
17393
17404
|
args: [{
|
|
17394
17405
|
providedIn: 'root'
|
|
@@ -17410,10 +17421,10 @@ class SoleDetailsService extends RestService$1 {
|
|
|
17410
17421
|
get() {
|
|
17411
17422
|
return super.get().pipe(map(soleDetails => soleDetails.length ? soleDetails : new Collection([plainToClass(SoleDetails, {})])));
|
|
17412
17423
|
}
|
|
17413
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17414
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17424
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17425
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsService, providedIn: 'root' }); }
|
|
17415
17426
|
}
|
|
17416
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17427
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsService, decorators: [{
|
|
17417
17428
|
type: Injectable,
|
|
17418
17429
|
args: [{
|
|
17419
17430
|
providedIn: 'root'
|
|
@@ -17455,10 +17466,10 @@ class SoleInvoiceService extends RestService$1 {
|
|
|
17455
17466
|
getInvoices() {
|
|
17456
17467
|
return this.get().pipe(map((invoices) => invoices.filterBy('type', SoleInvoiceTypeEnum.INVOICE)));
|
|
17457
17468
|
}
|
|
17458
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17459
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17469
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17470
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' }); }
|
|
17460
17471
|
}
|
|
17461
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceService, decorators: [{
|
|
17462
17473
|
type: Injectable,
|
|
17463
17474
|
args: [{
|
|
17464
17475
|
providedIn: 'root'
|
|
@@ -17474,10 +17485,10 @@ class SoleInvoiceTemplateService extends RestService {
|
|
|
17474
17485
|
this.modelClass = SoleInvoiceTemplate;
|
|
17475
17486
|
this.url = 'sole-invoice-templates';
|
|
17476
17487
|
}
|
|
17477
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17478
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17488
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17489
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' }); }
|
|
17479
17490
|
}
|
|
17480
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17491
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
|
|
17481
17492
|
type: Injectable,
|
|
17482
17493
|
args: [{
|
|
17483
17494
|
providedIn: 'root'
|
|
@@ -17501,10 +17512,10 @@ class BasReportService extends RestService$1 {
|
|
|
17501
17512
|
this.roles = [UserRolesEnum.SOLE_TANK];
|
|
17502
17513
|
this.useBackendError = true;
|
|
17503
17514
|
}
|
|
17504
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17505
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17515
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17516
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasReportService, providedIn: 'root' }); }
|
|
17506
17517
|
}
|
|
17507
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17518
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasReportService, decorators: [{
|
|
17508
17519
|
type: Injectable,
|
|
17509
17520
|
args: [{
|
|
17510
17521
|
providedIn: 'root'
|
|
@@ -17528,10 +17539,10 @@ class ServicePaymentService extends RestService$1 {
|
|
|
17528
17539
|
}
|
|
17529
17540
|
return this.http.get(`${this.environment.apiV2}/service-payments/${payment.id}/invoice-url`);
|
|
17530
17541
|
}
|
|
17531
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17532
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17542
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17543
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentService, providedIn: 'root' }); }
|
|
17533
17544
|
}
|
|
17534
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17545
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentService, decorators: [{
|
|
17535
17546
|
type: Injectable,
|
|
17536
17547
|
args: [{
|
|
17537
17548
|
providedIn: 'root'
|
|
@@ -17563,10 +17574,10 @@ class ServicePaymentMethodService extends RestService$1 {
|
|
|
17563
17574
|
return this.http.put(`${this.apiUrl}/${paymentMethod.id}/default`, {})
|
|
17564
17575
|
.pipe(map((updatedPaymentMethod) => plainToClass(ServicePaymentMethod, updatedPaymentMethod)));
|
|
17565
17576
|
}
|
|
17566
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17567
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17577
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentMethodService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17578
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' }); }
|
|
17568
17579
|
}
|
|
17569
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17580
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
|
|
17570
17581
|
type: Injectable,
|
|
17571
17582
|
args: [{
|
|
17572
17583
|
providedIn: 'root'
|
|
@@ -17587,10 +17598,10 @@ class ServicePriceService extends RestService$1 {
|
|
|
17587
17598
|
this.collectionClass = ServicePriceCollection;
|
|
17588
17599
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
17589
17600
|
}
|
|
17590
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17591
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17601
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17602
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePriceService, providedIn: 'root' }); }
|
|
17592
17603
|
}
|
|
17593
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17604
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePriceService, decorators: [{
|
|
17594
17605
|
type: Injectable,
|
|
17595
17606
|
args: [{
|
|
17596
17607
|
providedIn: 'root'
|
|
@@ -17675,10 +17686,10 @@ class SubscriptionService extends RestService$1 {
|
|
|
17675
17686
|
get(path = this.apiUrl) {
|
|
17676
17687
|
return super.get(path).pipe(map(subscriptions => subscriptions.sortBy('isActive', 'ask')));
|
|
17677
17688
|
}
|
|
17678
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17679
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17689
|
+
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 }); }
|
|
17690
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SubscriptionService, providedIn: 'root' }); }
|
|
17680
17691
|
}
|
|
17681
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17692
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SubscriptionService, decorators: [{
|
|
17682
17693
|
type: Injectable,
|
|
17683
17694
|
args: [{
|
|
17684
17695
|
providedIn: 'root'
|
|
@@ -17696,10 +17707,10 @@ class ServiceProductService extends RestService$1 {
|
|
|
17696
17707
|
this.endpointUri = 'service-products';
|
|
17697
17708
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
17698
17709
|
}
|
|
17699
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17700
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17710
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17711
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceProductService, providedIn: 'root' }); }
|
|
17701
17712
|
}
|
|
17702
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17713
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceProductService, decorators: [{
|
|
17703
17714
|
type: Injectable,
|
|
17704
17715
|
args: [{
|
|
17705
17716
|
providedIn: 'root'
|
|
@@ -17835,10 +17846,10 @@ class TaxReviewHistoryService extends RestService {
|
|
|
17835
17846
|
this.updateCache();
|
|
17836
17847
|
});
|
|
17837
17848
|
}
|
|
17838
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17839
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17849
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewHistoryService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17850
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' }); }
|
|
17840
17851
|
}
|
|
17841
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17852
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
|
|
17842
17853
|
type: Injectable,
|
|
17843
17854
|
args: [{
|
|
17844
17855
|
providedIn: 'root'
|
|
@@ -17931,10 +17942,10 @@ class TaxReviewService extends RestService {
|
|
|
17931
17942
|
}
|
|
17932
17943
|
});
|
|
17933
17944
|
}
|
|
17934
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17935
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17945
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17946
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewService, providedIn: 'root' }); }
|
|
17936
17947
|
}
|
|
17937
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17948
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewService, decorators: [{
|
|
17938
17949
|
type: Injectable,
|
|
17939
17950
|
args: [{
|
|
17940
17951
|
providedIn: 'root'
|
|
@@ -18265,10 +18276,10 @@ class TaxSummaryService {
|
|
|
18265
18276
|
this.getForecast().subscribe();
|
|
18266
18277
|
});
|
|
18267
18278
|
}
|
|
18268
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18269
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18279
|
+
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 }); }
|
|
18280
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxSummaryService, providedIn: 'root' }); }
|
|
18270
18281
|
}
|
|
18271
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18282
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxSummaryService, decorators: [{
|
|
18272
18283
|
type: Injectable,
|
|
18273
18284
|
args: [{
|
|
18274
18285
|
providedIn: 'root'
|
|
@@ -18289,10 +18300,10 @@ class AllocationRuleService extends RestService$1 {
|
|
|
18289
18300
|
getCustomHttpErrorMessages() {
|
|
18290
18301
|
return { 422: 'You can only have 10 conditions in a rule' };
|
|
18291
18302
|
}
|
|
18292
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18293
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18303
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18304
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AllocationRuleService, providedIn: 'root' }); }
|
|
18294
18305
|
}
|
|
18295
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18306
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AllocationRuleService, decorators: [{
|
|
18296
18307
|
type: Injectable,
|
|
18297
18308
|
args: [{
|
|
18298
18309
|
providedIn: 'root'
|
|
@@ -18397,10 +18408,10 @@ class TransactionAllocationService extends RestService {
|
|
|
18397
18408
|
}
|
|
18398
18409
|
});
|
|
18399
18410
|
}
|
|
18400
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18401
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18411
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionAllocationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18412
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' }); }
|
|
18402
18413
|
}
|
|
18403
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18414
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionAllocationService, decorators: [{
|
|
18404
18415
|
type: Injectable,
|
|
18405
18416
|
args: [{
|
|
18406
18417
|
providedIn: 'root'
|
|
@@ -18652,10 +18663,10 @@ class TransactionService extends RestService {
|
|
|
18652
18663
|
}
|
|
18653
18664
|
});
|
|
18654
18665
|
}
|
|
18655
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18656
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18666
|
+
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 }); }
|
|
18667
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionService, providedIn: 'root' }); }
|
|
18657
18668
|
}
|
|
18658
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18669
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionService, decorators: [{
|
|
18659
18670
|
type: Injectable,
|
|
18660
18671
|
args: [{
|
|
18661
18672
|
providedIn: 'root'
|
|
@@ -18681,10 +18692,10 @@ class PriorTransactionService extends RestService$1 {
|
|
|
18681
18692
|
const financialYear = new FinancialYear(new FinancialYear().year - 1);
|
|
18682
18693
|
return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(transactions => transactions.filterByFinancialYear('date', null, financialYear)));
|
|
18683
18694
|
}
|
|
18684
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18685
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18695
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18696
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorTransactionService, providedIn: 'root' }); }
|
|
18686
18697
|
}
|
|
18687
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18698
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorTransactionService, decorators: [{
|
|
18688
18699
|
type: Injectable,
|
|
18689
18700
|
args: [{
|
|
18690
18701
|
providedIn: 'root'
|
|
@@ -18706,10 +18717,10 @@ class InvoiceTransactionsService extends RestService$1 {
|
|
|
18706
18717
|
this.endpointUri = 'invoices/transactions';
|
|
18707
18718
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
18708
18719
|
}
|
|
18709
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18710
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18720
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InvoiceTransactionsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18721
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InvoiceTransactionsService, providedIn: 'root' }); }
|
|
18711
18722
|
}
|
|
18712
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18723
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InvoiceTransactionsService, decorators: [{
|
|
18713
18724
|
type: Injectable,
|
|
18714
18725
|
args: [{
|
|
18715
18726
|
providedIn: 'root'
|
|
@@ -18733,10 +18744,10 @@ class YoutubeService {
|
|
|
18733
18744
|
title: item.snippet.title
|
|
18734
18745
|
}))));
|
|
18735
18746
|
}
|
|
18736
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18737
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18747
|
+
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 }); }
|
|
18748
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: YoutubeService, providedIn: 'root' }); }
|
|
18738
18749
|
}
|
|
18739
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18750
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: YoutubeService, decorators: [{
|
|
18740
18751
|
type: Injectable,
|
|
18741
18752
|
args: [{
|
|
18742
18753
|
providedIn: 'root'
|
|
@@ -18756,10 +18767,10 @@ class VehicleService extends RestService$1 {
|
|
|
18756
18767
|
this.collectionClass = (Collection);
|
|
18757
18768
|
this.modelClass = Vehicle;
|
|
18758
18769
|
}
|
|
18759
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18760
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18770
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18771
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleService, providedIn: 'root' }); }
|
|
18761
18772
|
}
|
|
18762
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18773
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleService, decorators: [{
|
|
18763
18774
|
type: Injectable,
|
|
18764
18775
|
args: [{
|
|
18765
18776
|
providedIn: 'root'
|
|
@@ -18782,10 +18793,10 @@ class VehicleClaimService extends RestService$1 {
|
|
|
18782
18793
|
this.collectionClass = VehicleClaimCollection;
|
|
18783
18794
|
this.roles = [UserRolesEnum$1.WORK_TANK, UserRolesEnum$1.SOLE_TANK];
|
|
18784
18795
|
}
|
|
18785
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18786
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18796
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18797
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleClaimService, providedIn: 'root' }); }
|
|
18787
18798
|
}
|
|
18788
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18799
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleClaimService, decorators: [{
|
|
18789
18800
|
type: Injectable,
|
|
18790
18801
|
args: [{
|
|
18791
18802
|
providedIn: 'root'
|
|
@@ -18803,10 +18814,10 @@ class VehicleLogbookService extends RestService$1 {
|
|
|
18803
18814
|
this.collectionClass = VehicleLogbookCollection;
|
|
18804
18815
|
this.modelClass = VehicleLogbook;
|
|
18805
18816
|
}
|
|
18806
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18807
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18817
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18818
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' }); }
|
|
18808
18819
|
}
|
|
18809
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18820
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleLogbookService, decorators: [{
|
|
18810
18821
|
type: Injectable,
|
|
18811
18822
|
args: [{
|
|
18812
18823
|
providedIn: 'root'
|
|
@@ -18829,10 +18840,10 @@ class AnnualClientDetailsService extends RestService$1 {
|
|
|
18829
18840
|
this.endpointUri = 'annual-client-details';
|
|
18830
18841
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
|
|
18831
18842
|
}
|
|
18832
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18833
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18843
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AnnualClientDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18844
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AnnualClientDetailsService, providedIn: 'root' }); }
|
|
18834
18845
|
}
|
|
18835
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18846
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
|
|
18836
18847
|
type: Injectable,
|
|
18837
18848
|
args: [{
|
|
18838
18849
|
providedIn: 'root'
|
|
@@ -18862,10 +18873,10 @@ class OccupationService {
|
|
|
18862
18873
|
}
|
|
18863
18874
|
return this.occupationsSubject.asObservable();
|
|
18864
18875
|
}
|
|
18865
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18866
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18876
|
+
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 }); }
|
|
18877
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: OccupationService, providedIn: 'root' }); }
|
|
18867
18878
|
}
|
|
18868
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18879
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: OccupationService, decorators: [{
|
|
18869
18880
|
type: Injectable,
|
|
18870
18881
|
args: [{
|
|
18871
18882
|
providedIn: 'root'
|
|
@@ -18888,10 +18899,10 @@ class ClientCouponService extends RestService$1 {
|
|
|
18888
18899
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
18889
18900
|
this.skipErrorCodes = [404];
|
|
18890
18901
|
}
|
|
18891
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18892
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18902
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientCouponService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18903
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientCouponService, providedIn: 'root' }); }
|
|
18893
18904
|
}
|
|
18894
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18905
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientCouponService, decorators: [{
|
|
18895
18906
|
type: Injectable,
|
|
18896
18907
|
args: [{
|
|
18897
18908
|
providedIn: 'root'
|
|
@@ -18906,10 +18917,10 @@ class CapitalLossService extends RestService$1 {
|
|
|
18906
18917
|
this.collectionClass = (Collection);
|
|
18907
18918
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
18908
18919
|
}
|
|
18909
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18910
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18920
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CapitalLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18921
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CapitalLossService, providedIn: 'root' }); }
|
|
18911
18922
|
}
|
|
18912
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18923
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CapitalLossService, decorators: [{
|
|
18913
18924
|
type: Injectable,
|
|
18914
18925
|
args: [{
|
|
18915
18926
|
providedIn: 'root'
|
|
@@ -18972,10 +18983,10 @@ class UserEventSettingService extends RestService$1 {
|
|
|
18972
18983
|
this.endpointUri = 'user-event-settings';
|
|
18973
18984
|
this.disabledMethods = ['postBatch', 'putBatch', 'delete', 'deleteBatch'];
|
|
18974
18985
|
}
|
|
18975
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18976
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18986
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18987
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventSettingService, providedIn: 'root' }); }
|
|
18977
18988
|
}
|
|
18978
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18989
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventSettingService, decorators: [{
|
|
18979
18990
|
type: Injectable,
|
|
18980
18991
|
args: [{
|
|
18981
18992
|
providedIn: 'root'
|
|
@@ -18990,10 +19001,10 @@ class UserEventTypeService extends RestService$1 {
|
|
|
18990
19001
|
this.endpointUri = 'user-event-types';
|
|
18991
19002
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
18992
19003
|
}
|
|
18993
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18994
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19004
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19005
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventTypeService, providedIn: 'root' }); }
|
|
18995
19006
|
}
|
|
18996
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19007
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventTypeService, decorators: [{
|
|
18997
19008
|
type: Injectable,
|
|
18998
19009
|
args: [{
|
|
18999
19010
|
providedIn: 'root'
|
|
@@ -19021,10 +19032,10 @@ class UsersInviteService extends RestService {
|
|
|
19021
19032
|
this.modelClass = RegistrationInvite;
|
|
19022
19033
|
this.url = 'users/invite';
|
|
19023
19034
|
}
|
|
19024
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19025
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19035
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19036
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UsersInviteService, providedIn: 'root' }); }
|
|
19026
19037
|
}
|
|
19027
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19038
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UsersInviteService, decorators: [{
|
|
19028
19039
|
type: Injectable,
|
|
19029
19040
|
args: [{
|
|
19030
19041
|
providedIn: 'root'
|
|
@@ -19132,10 +19143,10 @@ class UserService extends RestService$1 {
|
|
|
19132
19143
|
this.setCache([user], true);
|
|
19133
19144
|
}, ['post', 'put']);
|
|
19134
19145
|
}
|
|
19135
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19136
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19146
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19147
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserService, providedIn: 'root' }); }
|
|
19137
19148
|
}
|
|
19138
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19149
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserService, decorators: [{
|
|
19139
19150
|
type: Injectable,
|
|
19140
19151
|
args: [{
|
|
19141
19152
|
providedIn: 'root'
|
|
@@ -19156,10 +19167,10 @@ class FinancialYearService {
|
|
|
19156
19167
|
window.location.reload();
|
|
19157
19168
|
}));
|
|
19158
19169
|
}
|
|
19159
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19160
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19170
|
+
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 }); }
|
|
19171
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearService, providedIn: 'root' }); }
|
|
19161
19172
|
}
|
|
19162
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19173
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearService, decorators: [{
|
|
19163
19174
|
type: Injectable,
|
|
19164
19175
|
args: [{
|
|
19165
19176
|
providedIn: 'root'
|
|
@@ -19203,10 +19214,10 @@ class MfaDetailsService extends RestService$1 {
|
|
|
19203
19214
|
return mfaDetails;
|
|
19204
19215
|
}));
|
|
19205
19216
|
}
|
|
19206
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19207
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19217
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MfaDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19218
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MfaDetailsService, providedIn: 'root' }); }
|
|
19208
19219
|
}
|
|
19209
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19220
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MfaDetailsService, decorators: [{
|
|
19210
19221
|
type: Injectable,
|
|
19211
19222
|
args: [{
|
|
19212
19223
|
providedIn: 'root'
|
|
@@ -19243,10 +19254,10 @@ class HoldingTradeService extends RestService$1 {
|
|
|
19243
19254
|
}
|
|
19244
19255
|
});
|
|
19245
19256
|
}
|
|
19246
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19247
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19257
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19258
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeService, providedIn: 'root' }); }
|
|
19248
19259
|
}
|
|
19249
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19260
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeService, decorators: [{
|
|
19250
19261
|
type: Injectable,
|
|
19251
19262
|
args: [{
|
|
19252
19263
|
providedIn: 'root'
|
|
@@ -19286,10 +19297,10 @@ class HoldingTypeService extends RestService$1 {
|
|
|
19286
19297
|
}
|
|
19287
19298
|
});
|
|
19288
19299
|
}
|
|
19289
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19290
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19300
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19301
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeService, providedIn: 'root' }); }
|
|
19291
19302
|
}
|
|
19292
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeService, decorators: [{
|
|
19293
19304
|
type: Injectable,
|
|
19294
19305
|
args: [{
|
|
19295
19306
|
providedIn: 'root'
|
|
@@ -19308,10 +19319,10 @@ class HoldingSaleService extends RestService$1 {
|
|
|
19308
19319
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
19309
19320
|
this.roles = [UserRolesEnum$1.HOLDING_TANK];
|
|
19310
19321
|
}
|
|
19311
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19312
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19322
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19323
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingSaleService, providedIn: 'root' }); }
|
|
19313
19324
|
}
|
|
19314
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19325
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingSaleService, decorators: [{
|
|
19315
19326
|
type: Injectable,
|
|
19316
19327
|
args: [{
|
|
19317
19328
|
providedIn: 'root'
|
|
@@ -19344,10 +19355,10 @@ class HoldingTradeImportService extends RestService$1 {
|
|
|
19344
19355
|
formData.append('isTaxFree', (isTaxFree ? 1 : 0).toString());
|
|
19345
19356
|
return this.importFile(formData).pipe(tap$1(() => this.toastService.success(HoldingTradeImportMessagesEnum.CREATED)));
|
|
19346
19357
|
}
|
|
19347
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19348
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19358
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeImportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19359
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeImportService, providedIn: 'root' }); }
|
|
19349
19360
|
}
|
|
19350
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeImportService, decorators: [{
|
|
19351
19362
|
type: Injectable,
|
|
19352
19363
|
args: [{
|
|
19353
19364
|
providedIn: 'root'
|
|
@@ -19441,10 +19452,10 @@ class HoldingTypeExchangeService extends DataService {
|
|
|
19441
19452
|
this.collectionClass = Collection;
|
|
19442
19453
|
this.setCache(HoldingTypeExchanges);
|
|
19443
19454
|
}
|
|
19444
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19445
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19455
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeExchangeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19456
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeExchangeService, providedIn: 'root' }); }
|
|
19446
19457
|
}
|
|
19447
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19458
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeExchangeService, decorators: [{
|
|
19448
19459
|
type: Injectable,
|
|
19449
19460
|
args: [{
|
|
19450
19461
|
providedIn: 'root'
|
|
@@ -19486,10 +19497,10 @@ class HoldingTaxStatementService extends RestService$1 {
|
|
|
19486
19497
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
19487
19498
|
this.roles = [UserRolesEnum.HOLDING_TANK];
|
|
19488
19499
|
}
|
|
19489
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19490
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19500
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19501
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementService, providedIn: 'root' }); }
|
|
19491
19502
|
}
|
|
19492
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19503
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementService, decorators: [{
|
|
19493
19504
|
type: Injectable,
|
|
19494
19505
|
args: [{
|
|
19495
19506
|
providedIn: 'root'
|
|
@@ -19513,10 +19524,10 @@ class HoldingTaxStatementPayerService extends RestService$1 {
|
|
|
19513
19524
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
19514
19525
|
this.roles = [UserRolesEnum.HOLDING_TANK];
|
|
19515
19526
|
}
|
|
19516
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19517
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19527
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementPayerService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19528
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementPayerService, providedIn: 'root' }); }
|
|
19518
19529
|
}
|
|
19519
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19530
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementPayerService, decorators: [{
|
|
19520
19531
|
type: Injectable,
|
|
19521
19532
|
args: [{
|
|
19522
19533
|
providedIn: 'root'
|
|
@@ -19533,10 +19544,10 @@ class HoldingCostAdjustmentService extends RestService$1 {
|
|
|
19533
19544
|
this.roles = [UserRolesEnum.HOLDING_TANK];
|
|
19534
19545
|
this.useBackendError = true;
|
|
19535
19546
|
}
|
|
19536
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19537
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19547
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingCostAdjustmentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19548
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingCostAdjustmentService, providedIn: 'root' }); }
|
|
19538
19549
|
}
|
|
19539
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19550
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingCostAdjustmentService, decorators: [{
|
|
19540
19551
|
type: Injectable,
|
|
19541
19552
|
args: [{
|
|
19542
19553
|
providedIn: 'root'
|
|
@@ -19560,10 +19571,10 @@ class HomeOfficeClaimService extends RestService$1 {
|
|
|
19560
19571
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
19561
19572
|
this.roles = [UserRolesEnum$1.WORK_TANK, UserRolesEnum$1.SOLE_TANK];
|
|
19562
19573
|
}
|
|
19563
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19564
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19574
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19575
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeClaimService, providedIn: 'root' }); }
|
|
19565
19576
|
}
|
|
19566
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeClaimService, decorators: [{
|
|
19567
19578
|
type: Injectable,
|
|
19568
19579
|
args: [{
|
|
19569
19580
|
providedIn: 'root'
|
|
@@ -19591,10 +19602,10 @@ class HomeOfficeLogService extends RestService$1 {
|
|
|
19591
19602
|
listenEvents() {
|
|
19592
19603
|
this.listenCSE(HomeOfficeClaim, this.refreshCache, ['post']);
|
|
19593
19604
|
}
|
|
19594
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19595
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19605
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeLogService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19606
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeLogService, providedIn: 'root' }); }
|
|
19596
19607
|
}
|
|
19597
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19608
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeLogService, decorators: [{
|
|
19598
19609
|
type: Injectable,
|
|
19599
19610
|
args: [{
|
|
19600
19611
|
providedIn: 'root'
|
|
@@ -19634,10 +19645,10 @@ class AussieService extends RestService$1 {
|
|
|
19634
19645
|
postAppointment() {
|
|
19635
19646
|
return this.http.delete(`${this.environment.apiV2}/aussie/appointments`);
|
|
19636
19647
|
}
|
|
19637
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19638
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19648
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19649
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieService, providedIn: 'root' }); }
|
|
19639
19650
|
}
|
|
19640
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19651
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieService, decorators: [{
|
|
19641
19652
|
type: Injectable,
|
|
19642
19653
|
args: [{
|
|
19643
19654
|
providedIn: 'root'
|
|
@@ -19661,10 +19672,10 @@ class SharesightDetailsService extends RestService$1 {
|
|
|
19661
19672
|
reconnect(sharesightDetails) {
|
|
19662
19673
|
return this.put(sharesightDetails, `${this.apiUrl}/${sharesightDetails.id}/reconnect`);
|
|
19663
19674
|
}
|
|
19664
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19665
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19675
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19676
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightDetailsService, providedIn: 'root' }); }
|
|
19666
19677
|
}
|
|
19667
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19678
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightDetailsService, decorators: [{
|
|
19668
19679
|
type: Injectable,
|
|
19669
19680
|
args: [{
|
|
19670
19681
|
providedIn: 'root'
|
|
@@ -19682,10 +19693,10 @@ class SharesightPortfolioService extends RestService$1 {
|
|
|
19682
19693
|
getExternal() {
|
|
19683
19694
|
return this.fetch(`${this.apiUrl}/external`, false);
|
|
19684
19695
|
}
|
|
19685
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19686
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19696
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightPortfolioService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19697
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightPortfolioService, providedIn: 'root' }); }
|
|
19687
19698
|
}
|
|
19688
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19699
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightPortfolioService, decorators: [{
|
|
19689
19700
|
type: Injectable,
|
|
19690
19701
|
args: [{
|
|
19691
19702
|
providedIn: 'root'
|
|
@@ -19767,10 +19778,10 @@ class IncomeSourceTypeService extends DataService {
|
|
|
19767
19778
|
this.collectionClass = Collection;
|
|
19768
19779
|
this.setCache(IncomeSourceTypes);
|
|
19769
19780
|
}
|
|
19770
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19771
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19781
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceTypeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19782
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceTypeService, providedIn: 'root' }); }
|
|
19772
19783
|
}
|
|
19773
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceTypeService, decorators: [{
|
|
19774
19785
|
type: Injectable,
|
|
19775
19786
|
args: [{
|
|
19776
19787
|
providedIn: 'root'
|
|
@@ -19784,10 +19795,10 @@ class ChartAccountsValueService extends DataService {
|
|
|
19784
19795
|
this.collectionClass = ChartAccountsValueCollection;
|
|
19785
19796
|
this.setCache(ChartAccountsValues);
|
|
19786
19797
|
}
|
|
19787
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19788
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19798
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsValueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19799
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsValueService, providedIn: 'root' }); }
|
|
19789
19800
|
}
|
|
19790
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19801
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsValueService, decorators: [{
|
|
19791
19802
|
type: Injectable,
|
|
19792
19803
|
args: [{
|
|
19793
19804
|
providedIn: 'root'
|
|
@@ -21760,10 +21771,10 @@ class TaxReturnItemService extends DataService {
|
|
|
21760
21771
|
this.collectionClass = Collection;
|
|
21761
21772
|
this.setCache(TaxReturnItems);
|
|
21762
21773
|
}
|
|
21763
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
21764
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
21774
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReturnItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
21775
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReturnItemService, providedIn: 'root' }); }
|
|
21765
21776
|
}
|
|
21766
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
21777
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReturnItemService, decorators: [{
|
|
21767
21778
|
type: Injectable,
|
|
21768
21779
|
args: [{
|
|
21769
21780
|
providedIn: 'root'
|
|
@@ -21944,10 +21955,10 @@ class CurrencyService extends DataService {
|
|
|
21944
21955
|
this.collectionClass = Collection;
|
|
21945
21956
|
this.setCache(Currencies);
|
|
21946
21957
|
}
|
|
21947
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
21948
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
21958
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrencyService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
21959
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrencyService, providedIn: 'root' }); }
|
|
21949
21960
|
}
|
|
21950
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
21961
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrencyService, decorators: [{
|
|
21951
21962
|
type: Injectable,
|
|
21952
21963
|
args: [{
|
|
21953
21964
|
providedIn: 'root'
|
|
@@ -23458,10 +23469,10 @@ class CountryService extends DataService {
|
|
|
23458
23469
|
this.collectionClass = Collection;
|
|
23459
23470
|
this.setCache(countries);
|
|
23460
23471
|
}
|
|
23461
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23462
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23472
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CountryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23473
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CountryService, providedIn: 'root' }); }
|
|
23463
23474
|
}
|
|
23464
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23475
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CountryService, decorators: [{
|
|
23465
23476
|
type: Injectable,
|
|
23466
23477
|
args: [{
|
|
23467
23478
|
providedIn: 'root'
|
|
@@ -23476,10 +23487,10 @@ class SetupItemService extends RestService$1 {
|
|
|
23476
23487
|
this.collectionClass = AccountSetupItemCollection;
|
|
23477
23488
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
23478
23489
|
}
|
|
23479
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23480
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23490
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SetupItemService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23491
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SetupItemService, providedIn: 'root' }); }
|
|
23481
23492
|
}
|
|
23482
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23493
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SetupItemService, decorators: [{
|
|
23483
23494
|
type: Injectable,
|
|
23484
23495
|
args: [{
|
|
23485
23496
|
providedIn: 'root'
|
|
@@ -23669,10 +23680,10 @@ class AccountSetupService {
|
|
|
23669
23680
|
getSharesightDetails(importEnabled) {
|
|
23670
23681
|
return this.sharesightDetailsService.getArray().pipe(map(details => details.filter(detail => importEnabled ? detail.importEnabled : detail.exportEnabled)));
|
|
23671
23682
|
}
|
|
23672
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23673
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23683
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AccountSetupService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23684
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AccountSetupService, providedIn: 'root' }); }
|
|
23674
23685
|
}
|
|
23675
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23686
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AccountSetupService, decorators: [{
|
|
23676
23687
|
type: Injectable,
|
|
23677
23688
|
args: [{
|
|
23678
23689
|
providedIn: 'root'
|
|
@@ -23687,10 +23698,10 @@ class AdblockDetectorService {
|
|
|
23687
23698
|
constructor() {
|
|
23688
23699
|
checkAdBlock().then((isDetected) => this.isDetected = isDetected);
|
|
23689
23700
|
}
|
|
23690
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23691
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23701
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdblockDetectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23702
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdblockDetectorService, providedIn: 'root' }); }
|
|
23692
23703
|
}
|
|
23693
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23704
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdblockDetectorService, decorators: [{
|
|
23694
23705
|
type: Injectable,
|
|
23695
23706
|
args: [{
|
|
23696
23707
|
providedIn: 'root'
|
|
@@ -23733,10 +23744,10 @@ class UserSwitcherService {
|
|
|
23733
23744
|
window.location.replace('/client/dashboard');
|
|
23734
23745
|
});
|
|
23735
23746
|
}
|
|
23736
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23737
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23747
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23748
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherService, providedIn: 'root' }); }
|
|
23738
23749
|
}
|
|
23739
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23750
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherService, decorators: [{
|
|
23740
23751
|
type: Injectable,
|
|
23741
23752
|
args: [{
|
|
23742
23753
|
providedIn: 'root'
|
|
@@ -23780,10 +23791,10 @@ class AssetsService {
|
|
|
23780
23791
|
delete(entityId, asset) {
|
|
23781
23792
|
return this.http.delete(`${this.environment.apiV2}/${asset.entityType}/${entityId}/${asset.type}/${asset.id}`);
|
|
23782
23793
|
}
|
|
23783
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23784
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23794
|
+
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 }); }
|
|
23795
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AssetsService, providedIn: 'root' }); }
|
|
23785
23796
|
}
|
|
23786
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23797
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AssetsService, decorators: [{
|
|
23787
23798
|
type: Injectable,
|
|
23788
23799
|
args: [{
|
|
23789
23800
|
providedIn: 'root'
|
|
@@ -23814,10 +23825,10 @@ class BankAccountCalculationService {
|
|
|
23814
23825
|
});
|
|
23815
23826
|
return total;
|
|
23816
23827
|
}
|
|
23817
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23818
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23828
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23829
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' }); }
|
|
23819
23830
|
}
|
|
23820
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23831
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountCalculationService, decorators: [{
|
|
23821
23832
|
type: Injectable,
|
|
23822
23833
|
args: [{
|
|
23823
23834
|
providedIn: 'root'
|
|
@@ -23854,10 +23865,10 @@ class CorelogicService {
|
|
|
23854
23865
|
return throwError(() => error);
|
|
23855
23866
|
}));
|
|
23856
23867
|
}
|
|
23857
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23858
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23868
|
+
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 }); }
|
|
23869
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicService, providedIn: 'root' }); }
|
|
23859
23870
|
}
|
|
23860
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23871
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicService, decorators: [{
|
|
23861
23872
|
type: Injectable,
|
|
23862
23873
|
args: [{
|
|
23863
23874
|
providedIn: 'root'
|
|
@@ -23875,10 +23886,10 @@ class GooglePlaceService {
|
|
|
23875
23886
|
getSuggestions(search, country = 'au') {
|
|
23876
23887
|
return this.http.get(`${this.environment.apiV2}/google-place/suggestions`, { params: { search, country } }).pipe(map((response) => response.map((item) => plainToClass(AddressSuggestion, item))));
|
|
23877
23888
|
}
|
|
23878
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23879
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23889
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GooglePlaceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23890
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GooglePlaceService, providedIn: 'root' }); }
|
|
23880
23891
|
}
|
|
23881
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23892
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GooglePlaceService, decorators: [{
|
|
23882
23893
|
type: Injectable,
|
|
23883
23894
|
args: [{
|
|
23884
23895
|
providedIn: 'root'
|
|
@@ -23908,10 +23919,10 @@ class ExportFormatterService {
|
|
|
23908
23919
|
}
|
|
23909
23920
|
}));
|
|
23910
23921
|
}
|
|
23911
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23912
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23922
|
+
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 }); }
|
|
23923
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExportFormatterService, providedIn: 'root' }); }
|
|
23913
23924
|
}
|
|
23914
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23925
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExportFormatterService, decorators: [{
|
|
23915
23926
|
type: Injectable,
|
|
23916
23927
|
args: [{
|
|
23917
23928
|
providedIn: 'root'
|
|
@@ -23931,10 +23942,10 @@ class HeaderTitleService {
|
|
|
23931
23942
|
return route;
|
|
23932
23943
|
}), filter((route) => route.outlet === 'primary'), mergeMap((route) => route.data));
|
|
23933
23944
|
}
|
|
23934
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23935
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23945
|
+
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 }); }
|
|
23946
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HeaderTitleService, providedIn: 'root' }); }
|
|
23936
23947
|
}
|
|
23937
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23948
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HeaderTitleService, decorators: [{
|
|
23938
23949
|
type: Injectable,
|
|
23939
23950
|
args: [{
|
|
23940
23951
|
providedIn: 'root'
|
|
@@ -23967,10 +23978,10 @@ class IntercomService {
|
|
|
23967
23978
|
const connectionCredentials = this.initUser(user);
|
|
23968
23979
|
window.Intercom('boot', connectionCredentials);
|
|
23969
23980
|
}
|
|
23970
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23971
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23981
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23982
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IntercomService, providedIn: 'root' }); }
|
|
23972
23983
|
}
|
|
23973
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23984
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IntercomService, decorators: [{
|
|
23974
23985
|
type: Injectable,
|
|
23975
23986
|
args: [{
|
|
23976
23987
|
providedIn: 'root'
|
|
@@ -24086,10 +24097,10 @@ class PdfFromDomElementService {
|
|
|
24086
24097
|
idoc.head.appendChild(clone);
|
|
24087
24098
|
});
|
|
24088
24099
|
}
|
|
24089
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24090
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24100
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24101
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' }); }
|
|
24091
24102
|
}
|
|
24092
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24103
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDomElementService, decorators: [{
|
|
24093
24104
|
type: Injectable,
|
|
24094
24105
|
args: [{
|
|
24095
24106
|
providedIn: 'root'
|
|
@@ -24205,10 +24216,10 @@ class PdfFromTableService {
|
|
|
24205
24216
|
startY: lastTableCoords + FILE_SETTINGS.titleCoords.top / 2,
|
|
24206
24217
|
});
|
|
24207
24218
|
}
|
|
24208
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24209
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24219
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24220
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromTableService, providedIn: 'root' }); }
|
|
24210
24221
|
}
|
|
24211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24222
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromTableService, decorators: [{
|
|
24212
24223
|
type: Injectable,
|
|
24213
24224
|
args: [{
|
|
24214
24225
|
providedIn: 'root'
|
|
@@ -24250,10 +24261,10 @@ class PdfFromDataTableService extends PdfFromTableService {
|
|
|
24250
24261
|
});
|
|
24251
24262
|
return pdf;
|
|
24252
24263
|
}
|
|
24253
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24254
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24264
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24265
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' }); }
|
|
24255
24266
|
}
|
|
24256
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24267
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDataTableService, decorators: [{
|
|
24257
24268
|
type: Injectable,
|
|
24258
24269
|
args: [{
|
|
24259
24270
|
providedIn: 'root'
|
|
@@ -24304,10 +24315,10 @@ class PdfFromHtmlTableService extends PdfFromTableService {
|
|
|
24304
24315
|
Array.from(caption.children).map((node) => node.textContent).join('\n') :
|
|
24305
24316
|
caption.innerText;
|
|
24306
24317
|
}
|
|
24307
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24308
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24318
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24319
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' }); }
|
|
24309
24320
|
}
|
|
24310
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24321
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
|
|
24311
24322
|
type: Injectable,
|
|
24312
24323
|
args: [{
|
|
24313
24324
|
providedIn: 'root'
|
|
@@ -24331,10 +24342,10 @@ class PreloaderService {
|
|
|
24331
24342
|
activePreloaders = activePreloaders.filter((preloader) => preloader !== endpoint);
|
|
24332
24343
|
this.activePreloaders.next(activePreloaders);
|
|
24333
24344
|
}
|
|
24334
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24335
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24345
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24346
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderService, providedIn: 'root' }); }
|
|
24336
24347
|
}
|
|
24337
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24348
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderService, decorators: [{
|
|
24338
24349
|
type: Injectable,
|
|
24339
24350
|
args: [{
|
|
24340
24351
|
providedIn: 'root'
|
|
@@ -24360,10 +24371,10 @@ class EquityPositionChartService {
|
|
|
24360
24371
|
}))
|
|
24361
24372
|
}))));
|
|
24362
24373
|
}
|
|
24363
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24364
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24374
|
+
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 }); }
|
|
24375
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' }); }
|
|
24365
24376
|
}
|
|
24366
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24377
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EquityPositionChartService, decorators: [{
|
|
24367
24378
|
type: Injectable,
|
|
24368
24379
|
args: [{
|
|
24369
24380
|
providedIn: 'root'
|
|
@@ -24526,10 +24537,10 @@ class PropertyCalculationService {
|
|
|
24526
24537
|
return new Badge('Monitoring performance');
|
|
24527
24538
|
}
|
|
24528
24539
|
}
|
|
24529
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24530
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24540
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24541
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' }); }
|
|
24531
24542
|
}
|
|
24532
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24543
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCalculationService, decorators: [{
|
|
24533
24544
|
type: Injectable,
|
|
24534
24545
|
args: [{
|
|
24535
24546
|
providedIn: 'root'
|
|
@@ -24564,12 +24575,12 @@ class PropertyTransactionReportService {
|
|
|
24564
24575
|
}));
|
|
24565
24576
|
}
|
|
24566
24577
|
filter(filterForm) {
|
|
24567
|
-
return this.create(filterForm.filter(this.transactions),
|
|
24578
|
+
return this.create(filterForm.filter(this.transactions), this.depreciations, this.properties, this.chartAccounts, filterForm.value.dateRange);
|
|
24568
24579
|
}
|
|
24569
|
-
create(transactions, depreciations, properties, chartAccounts) {
|
|
24580
|
+
create(transactions, depreciations, properties, chartAccounts, dateRange = null) {
|
|
24570
24581
|
return new PropertyReportItemCollection([
|
|
24571
24582
|
...new PropertyReportItemTransactionCollection(transactions, properties, chartAccounts).items,
|
|
24572
|
-
...new PropertyReportItemDepreciationCollection(depreciations, properties, chartAccounts).items,
|
|
24583
|
+
...new PropertyReportItemDepreciationCollection(depreciations, properties, chartAccounts, dateRange).items,
|
|
24573
24584
|
]).sortBy('subCode', 'asc').groupBy('propertyId');
|
|
24574
24585
|
}
|
|
24575
24586
|
/**
|
|
@@ -24587,10 +24598,10 @@ class PropertyTransactionReportService {
|
|
|
24587
24598
|
getDepreciations() {
|
|
24588
24599
|
return this.depreciationService.get().pipe(map((depreciations) => depreciations.getByChartAccountsCategories(CHART_ACCOUNTS_CATEGORIES.property)));
|
|
24589
24600
|
}
|
|
24590
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24591
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24601
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyTransactionReportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24602
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' }); }
|
|
24592
24603
|
}
|
|
24593
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24604
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
|
|
24594
24605
|
type: Injectable,
|
|
24595
24606
|
args: [{
|
|
24596
24607
|
providedIn: 'root'
|
|
@@ -24610,10 +24621,10 @@ class CurrentFirmBranchService {
|
|
|
24610
24621
|
set(firmBranches) {
|
|
24611
24622
|
this.firmBranchIds$.next(firmBranches.map(branch => branch.id));
|
|
24612
24623
|
}
|
|
24613
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24614
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24624
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrentFirmBranchService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24625
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrentFirmBranchService, providedIn: 'root' }); }
|
|
24615
24626
|
}
|
|
24616
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24627
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrentFirmBranchService, decorators: [{
|
|
24617
24628
|
type: Injectable,
|
|
24618
24629
|
args: [{
|
|
24619
24630
|
providedIn: 'root'
|
|
@@ -24708,10 +24719,10 @@ class XlsxService {
|
|
|
24708
24719
|
const data = new Blob([excelFile], { type: EXCEL_TYPE });
|
|
24709
24720
|
FileSaver.saveAs(data, `${fileName}.xlsx`);
|
|
24710
24721
|
}
|
|
24711
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24712
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24722
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24723
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: XlsxService, providedIn: 'root' }); }
|
|
24713
24724
|
}
|
|
24714
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24725
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: XlsxService, decorators: [{
|
|
24715
24726
|
type: Injectable,
|
|
24716
24727
|
args: [{
|
|
24717
24728
|
providedIn: 'root'
|
|
@@ -24745,10 +24756,10 @@ class CorelogicInterceptor {
|
|
|
24745
24756
|
}
|
|
24746
24757
|
});
|
|
24747
24758
|
}
|
|
24748
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24749
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24759
|
+
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 }); }
|
|
24760
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicInterceptor }); }
|
|
24750
24761
|
}
|
|
24751
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24762
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicInterceptor, decorators: [{
|
|
24752
24763
|
type: Injectable
|
|
24753
24764
|
}], ctorParameters: () => [{ type: CorelogicService }, { type: undefined, decorators: [{
|
|
24754
24765
|
type: Inject,
|
|
@@ -24784,10 +24795,10 @@ class FinancialYearInterceptor {
|
|
|
24784
24795
|
}
|
|
24785
24796
|
return next.handle(clonedReq);
|
|
24786
24797
|
}
|
|
24787
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24788
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24798
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24799
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearInterceptor }); }
|
|
24789
24800
|
}
|
|
24790
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24801
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
|
|
24791
24802
|
type: Injectable
|
|
24792
24803
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
24793
24804
|
type: Inject,
|
|
@@ -24821,10 +24832,10 @@ class UserSwitcherInterceptor {
|
|
|
24821
24832
|
intercept(request, next) {
|
|
24822
24833
|
return next.handle(this.switch(request, this.userSwitcherService.get()));
|
|
24823
24834
|
}
|
|
24824
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24825
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24835
|
+
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 }); }
|
|
24836
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherInterceptor }); }
|
|
24826
24837
|
}
|
|
24827
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24838
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
|
|
24828
24839
|
type: Injectable
|
|
24829
24840
|
}], ctorParameters: () => [{ type: UserSwitcherService }, { type: undefined, decorators: [{
|
|
24830
24841
|
type: Inject,
|
|
@@ -25201,10 +25212,10 @@ class PreloaderInterceptor {
|
|
|
25201
25212
|
findEndpoint(requestPath) {
|
|
25202
25213
|
return Object.values(ENDPOINTS).find((endpoint) => endpoint.test(requestPath));
|
|
25203
25214
|
}
|
|
25204
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25205
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25215
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25216
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderInterceptor }); }
|
|
25206
25217
|
}
|
|
25207
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25218
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderInterceptor, decorators: [{
|
|
25208
25219
|
type: Injectable
|
|
25209
25220
|
}], ctorParameters: () => [{ type: PreloaderService }] });
|
|
25210
25221
|
|
|
@@ -25239,10 +25250,10 @@ class RewardfulInterceptor {
|
|
|
25239
25250
|
&& (window['Rewardful'].referral || window['Rewardful'].coupon?.id)
|
|
25240
25251
|
&& registrationUrls.some(registrationUrl => request.url.includes(registrationUrl));
|
|
25241
25252
|
}
|
|
25242
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25243
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25253
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RewardfulInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25254
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RewardfulInterceptor }); }
|
|
25244
25255
|
}
|
|
25245
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25256
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RewardfulInterceptor, decorators: [{
|
|
25246
25257
|
type: Injectable
|
|
25247
25258
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
25248
25259
|
type: Inject,
|
|
@@ -25271,10 +25282,10 @@ class AussieInterceptor {
|
|
|
25271
25282
|
}
|
|
25272
25283
|
});
|
|
25273
25284
|
}
|
|
25274
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25275
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25285
|
+
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 }); }
|
|
25286
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieInterceptor }); }
|
|
25276
25287
|
}
|
|
25277
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieInterceptor, decorators: [{
|
|
25278
25289
|
type: Injectable
|
|
25279
25290
|
}], ctorParameters: () => [{ type: AussieService }, { type: undefined, decorators: [{
|
|
25280
25291
|
type: Inject,
|
|
@@ -25282,13 +25293,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
|
|
|
25282
25293
|
}] }] });
|
|
25283
25294
|
|
|
25284
25295
|
const ADBLOCK_ERROR_HTML = new InjectionToken('ADBLOCK_ERROR_HTML');
|
|
25285
|
-
const ADBLOCK_ERROR_HTML_VALUE = `
|
|
25286
|
-
<div class="text-center">
|
|
25287
|
-
<strong>Action needed - Your adblocker is blocking CoreLogic</strong>
|
|
25288
|
-
To add a property in TaxTank we need to fetch data from CoreLogic, however your ad blocker is getting in the way.
|
|
25289
|
-
Please disable your adblocker or whitelist TaxTank to continue.
|
|
25290
|
-
<a class="btn" target="_blank" href="https://support.taxtank.com.au/en/articles/10505609-how-to-ensure-seamless-functionality-while-using-ad-blockers-with-taxtank">Learn more</a>
|
|
25291
|
-
</div>
|
|
25296
|
+
const ADBLOCK_ERROR_HTML_VALUE = `
|
|
25297
|
+
<div class="text-center">
|
|
25298
|
+
<strong>Action needed - Your adblocker is blocking CoreLogic</strong>
|
|
25299
|
+
To add a property in TaxTank we need to fetch data from CoreLogic, however your ad blocker is getting in the way.
|
|
25300
|
+
Please disable your adblocker or whitelist TaxTank to continue.
|
|
25301
|
+
<a class="btn" target="_blank" href="https://support.taxtank.com.au/en/articles/10505609-how-to-ensure-seamless-functionality-while-using-ad-blockers-with-taxtank">Learn more</a>
|
|
25302
|
+
</div>
|
|
25292
25303
|
`;
|
|
25293
25304
|
|
|
25294
25305
|
/**
|
|
@@ -25313,10 +25324,10 @@ class AdBlockErrorInterceptor {
|
|
|
25313
25324
|
}
|
|
25314
25325
|
return next.handle(request);
|
|
25315
25326
|
}
|
|
25316
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25317
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25327
|
+
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 }); }
|
|
25328
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdBlockErrorInterceptor }); }
|
|
25318
25329
|
}
|
|
25319
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25330
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdBlockErrorInterceptor, decorators: [{
|
|
25320
25331
|
type: Injectable
|
|
25321
25332
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
25322
25333
|
type: Inject,
|
|
@@ -25327,9 +25338,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
|
|
|
25327
25338
|
}] }] });
|
|
25328
25339
|
|
|
25329
25340
|
class InterceptorsModule {
|
|
25330
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25331
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
25332
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
25341
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
25342
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule }); }
|
|
25343
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, providers: [
|
|
25333
25344
|
{
|
|
25334
25345
|
provide: HTTP_INTERCEPTORS,
|
|
25335
25346
|
useClass: CorelogicInterceptor,
|
|
@@ -25372,7 +25383,7 @@ class InterceptorsModule {
|
|
|
25372
25383
|
}
|
|
25373
25384
|
] }); }
|
|
25374
25385
|
}
|
|
25375
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25386
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, decorators: [{
|
|
25376
25387
|
type: NgModule,
|
|
25377
25388
|
args: [{
|
|
25378
25389
|
providers: [
|
|
@@ -25424,13 +25435,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
|
|
|
25424
25435
|
* https://angular.io/guide/creating-libraries
|
|
25425
25436
|
*/
|
|
25426
25437
|
class CoreModule {
|
|
25427
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25428
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
25438
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
25439
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
|
|
25429
25440
|
InterceptorsModule] }); }
|
|
25430
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
25441
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
|
|
25431
25442
|
InterceptorsModule] }); }
|
|
25432
25443
|
}
|
|
25433
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25444
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CoreModule, decorators: [{
|
|
25434
25445
|
type: NgModule,
|
|
25435
25446
|
args: [{
|
|
25436
25447
|
declarations: [],
|
|
@@ -25450,10 +25461,10 @@ class AppCurrencyPipe extends CurrencyPipe {
|
|
|
25450
25461
|
digitsInfo = digitsInfo ?? '1.0-' + (value.toString().match(/[1-9]/)?.index || 2);
|
|
25451
25462
|
return super.transform(value, currencyCode, display, digitsInfo, locale);
|
|
25452
25463
|
}
|
|
25453
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25454
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
25464
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AppCurrencyPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
25465
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: AppCurrencyPipe, isStandalone: true, name: "appCurrency" }); }
|
|
25455
25466
|
}
|
|
25456
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25467
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AppCurrencyPipe, decorators: [{
|
|
25457
25468
|
type: Pipe,
|
|
25458
25469
|
args: [{
|
|
25459
25470
|
name: 'appCurrency',
|
|
@@ -25468,10 +25479,10 @@ class AppPercentPipe {
|
|
|
25468
25479
|
transform(value, total, floor) {
|
|
25469
25480
|
return this.percentagePipe.transform(value, total, floor) + '%';
|
|
25470
25481
|
}
|
|
25471
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25472
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
25482
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AppPercentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
25483
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: AppPercentPipe, isStandalone: true, name: "percentage" }); }
|
|
25473
25484
|
}
|
|
25474
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25485
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AppPercentPipe, decorators: [{
|
|
25475
25486
|
type: Pipe,
|
|
25476
25487
|
args: [{
|
|
25477
25488
|
name: 'percentage',
|
|
@@ -25498,10 +25509,10 @@ class RelativeDatePipe {
|
|
|
25498
25509
|
return this.datePipe.transform(date.toDate(), DateFormatsEnum.DATE_SLASH);
|
|
25499
25510
|
}
|
|
25500
25511
|
}
|
|
25501
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25502
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
25512
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RelativeDatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
25513
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: RelativeDatePipe, isStandalone: true, name: "relativeDate" }); }
|
|
25503
25514
|
}
|
|
25504
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25515
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RelativeDatePipe, decorators: [{
|
|
25505
25516
|
type: Pipe,
|
|
25506
25517
|
args: [{
|
|
25507
25518
|
name: 'relativeDate',
|
|
@@ -25516,10 +25527,10 @@ class SafeUrlPipe {
|
|
|
25516
25527
|
transform(url) {
|
|
25517
25528
|
return this.sanitizer.bypassSecurityTrustResourceUrl(url);
|
|
25518
25529
|
}
|
|
25519
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25520
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
25530
|
+
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 }); }
|
|
25531
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
|
|
25521
25532
|
}
|
|
25522
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25533
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SafeUrlPipe, decorators: [{
|
|
25523
25534
|
type: Pipe,
|
|
25524
25535
|
args: [{
|
|
25525
25536
|
name: 'safeUrl',
|
|
@@ -25872,10 +25883,10 @@ class BusinessResolver {
|
|
|
25872
25883
|
resolve() {
|
|
25873
25884
|
return this.soleDetailsService.getFirst();
|
|
25874
25885
|
}
|
|
25875
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25876
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25886
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25887
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessResolver, providedIn: 'root' }); }
|
|
25877
25888
|
}
|
|
25878
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25889
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessResolver, decorators: [{
|
|
25879
25890
|
type: Injectable,
|
|
25880
25891
|
args: [{ providedIn: 'root' }]
|
|
25881
25892
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
|
@@ -25887,10 +25898,10 @@ class SoleDetailsResolver {
|
|
|
25887
25898
|
resolve() {
|
|
25888
25899
|
return this.soleDetails.getFirst();
|
|
25889
25900
|
}
|
|
25890
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25891
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25901
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25902
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsResolver, providedIn: 'root' }); }
|
|
25892
25903
|
}
|
|
25893
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25904
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsResolver, decorators: [{
|
|
25894
25905
|
type: Injectable,
|
|
25895
25906
|
args: [{ providedIn: 'root' }]
|
|
25896
25907
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
|
@@ -26641,10 +26652,10 @@ class UniqueEmailValidator {
|
|
|
26641
26652
|
validate(control) {
|
|
26642
26653
|
return this.userService.search(control.value).pipe(map(user => user ? { emailIsUsed: true } : null));
|
|
26643
26654
|
}
|
|
26644
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
26645
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
26655
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UniqueEmailValidator, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
26656
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UniqueEmailValidator, providedIn: 'root' }); }
|
|
26646
26657
|
}
|
|
26647
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
26658
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UniqueEmailValidator, decorators: [{
|
|
26648
26659
|
type: Injectable,
|
|
26649
26660
|
args: [{ providedIn: 'root' }]
|
|
26650
26661
|
}], ctorParameters: () => [{ type: UserService }] });
|
|
@@ -27157,10 +27168,10 @@ class ClientMovementForm extends AbstractForm {
|
|
|
27157
27168
|
firmBranch: new FormControl(clientMovement.firmBranch, [Validators.required]),
|
|
27158
27169
|
}, clientMovement);
|
|
27159
27170
|
}
|
|
27160
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
27161
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
27171
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementForm, deps: [{ token: ClientMovement }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
27172
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementForm, providedIn: 'root' }); }
|
|
27162
27173
|
}
|
|
27163
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
27174
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementForm, decorators: [{
|
|
27164
27175
|
type: Injectable,
|
|
27165
27176
|
args: [{
|
|
27166
27177
|
providedIn: 'root'
|
|
@@ -27173,10 +27184,10 @@ class EmployeeDetailsForm extends AbstractForm {
|
|
|
27173
27184
|
firmBranches: new FormControl(employeeDetails.firmBranches, [Validators.required]),
|
|
27174
27185
|
}, employeeDetails);
|
|
27175
27186
|
}
|
|
27176
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
27177
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
27187
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeDetailsForm, deps: [{ token: EmployeeDetails }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
27188
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeDetailsForm, providedIn: 'root' }); }
|
|
27178
27189
|
}
|
|
27179
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
27190
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeDetailsForm, decorators: [{
|
|
27180
27191
|
type: Injectable,
|
|
27181
27192
|
args: [{
|
|
27182
27193
|
providedIn: 'root'
|