taxtank-core 2.0.30 → 2.0.31
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 +460 -455
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +1 -1
- package/index.d.ts.map +0 -1
@@ -100,10 +100,10 @@ class AddressService {
|
|
100
100
|
}
|
101
101
|
return this.countriesSubject.asObservable();
|
102
102
|
}
|
103
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
104
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
103
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AddressService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
104
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AddressService, providedIn: 'root' }); }
|
105
105
|
}
|
106
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AddressService, decorators: [{
|
107
107
|
type: Injectable,
|
108
108
|
args: [{
|
109
109
|
providedIn: 'root'
|
@@ -127,10 +127,10 @@ class PdfService {
|
|
127
127
|
formData.append('landscape', landscape ? '1' : '0');
|
128
128
|
return this.http.post(`${this.environment.apiV2}/pdf/html`, formData, { responseType: 'blob' });
|
129
129
|
}
|
130
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
131
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
130
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
131
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfService, providedIn: 'root' }); }
|
132
132
|
}
|
133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfService, decorators: [{
|
134
134
|
type: Injectable,
|
135
135
|
args: [{
|
136
136
|
providedIn: 'root'
|
@@ -6715,6 +6715,11 @@ class Transaction extends Transaction$1 {
|
|
6715
6715
|
get grossAmount() {
|
6716
6716
|
return this.grossAmountWithoutGst + this.gstAmount;
|
6717
6717
|
}
|
6718
|
+
get grossTaxableAmount() {
|
6719
|
+
const untaxableAdjustment = new Collection(this.transactions)
|
6720
|
+
.filter(transaction => transaction.chartAccounts.id === ChartAccountsSalaryAdjustmentsListEnum.PRE_TAX_DEDUCTIONS_OTHER).sumBy('amount');
|
6721
|
+
return this.grossAmount - untaxableAdjustment;
|
6722
|
+
}
|
6718
6723
|
get grossAmountWithoutGst() {
|
6719
6724
|
let grossAmount = this.amount + this.tax;
|
6720
6725
|
if (this.isExpense()) {
|
@@ -11467,10 +11472,10 @@ class EventDispatcherService {
|
|
11467
11472
|
dispatch2(event) {
|
11468
11473
|
this.eventSubject2.next(event);
|
11469
11474
|
}
|
11470
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
11471
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
11475
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11476
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EventDispatcherService, providedIn: 'root' }); }
|
11472
11477
|
}
|
11473
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
11478
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EventDispatcherService, decorators: [{
|
11474
11479
|
type: Injectable,
|
11475
11480
|
args: [{
|
11476
11481
|
providedIn: 'root'
|
@@ -11505,10 +11510,10 @@ class SseService {
|
|
11505
11510
|
})
|
11506
11511
|
.pipe(map((messageEvent) => JSON.parse(messageEvent.data)));
|
11507
11512
|
}
|
11508
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
11509
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
11513
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SseService, deps: [{ token: i0.NgZone }, { token: i3.JwtService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11514
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SseService, providedIn: 'root' }); }
|
11510
11515
|
}
|
11511
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
11516
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SseService, decorators: [{
|
11512
11517
|
type: Injectable,
|
11513
11518
|
args: [{
|
11514
11519
|
providedIn: 'root'
|
@@ -11596,10 +11601,10 @@ class DataService {
|
|
11596
11601
|
setCache(data) {
|
11597
11602
|
this.cache = this.createCollectionInstance(this.collectionClass, data);
|
11598
11603
|
}
|
11599
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
11600
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
11604
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DataService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11605
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DataService, providedIn: 'root' }); }
|
11601
11606
|
}
|
11602
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
11607
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DataService, decorators: [{
|
11603
11608
|
type: Injectable,
|
11604
11609
|
args: [{
|
11605
11610
|
providedIn: 'root'
|
@@ -11667,10 +11672,10 @@ class ToastService {
|
|
11667
11672
|
message,
|
11668
11673
|
}));
|
11669
11674
|
}
|
11670
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
11671
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
11675
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11676
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ToastService, providedIn: 'root' }); }
|
11672
11677
|
}
|
11673
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
11678
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ToastService, decorators: [{
|
11674
11679
|
type: Injectable,
|
11675
11680
|
args: [{
|
11676
11681
|
providedIn: 'root'
|
@@ -12037,10 +12042,10 @@ let RestService$1 = class RestService extends DataService {
|
|
12037
12042
|
this.handleResponse([change.model], change.method);
|
12038
12043
|
});
|
12039
12044
|
}
|
12040
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12041
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12045
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12046
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
12042
12047
|
};
|
12043
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12048
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RestService$1, decorators: [{
|
12044
12049
|
type: Injectable,
|
12045
12050
|
args: [{
|
12046
12051
|
providedIn: 'root'
|
@@ -12180,10 +12185,10 @@ class BankAccountService extends RestService$1 {
|
|
12180
12185
|
}
|
12181
12186
|
});
|
12182
12187
|
}
|
12183
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12184
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12188
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankAccountService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: SseService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12189
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankAccountService, providedIn: 'root' }); }
|
12185
12190
|
}
|
12186
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12191
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankAccountService, decorators: [{
|
12187
12192
|
type: Injectable,
|
12188
12193
|
args: [{
|
12189
12194
|
providedIn: 'root'
|
@@ -12288,10 +12293,10 @@ class BankConnectionService extends RestService$1 {
|
|
12288
12293
|
}
|
12289
12294
|
});
|
12290
12295
|
}
|
12291
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12292
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12296
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankConnectionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12297
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankConnectionService, providedIn: 'root' }); }
|
12293
12298
|
}
|
12294
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12299
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankConnectionService, decorators: [{
|
12295
12300
|
type: Injectable,
|
12296
12301
|
args: [{
|
12297
12302
|
providedIn: 'root'
|
@@ -12357,10 +12362,10 @@ class BankTransactionService extends RestService$1 {
|
|
12357
12362
|
}
|
12358
12363
|
});
|
12359
12364
|
}
|
12360
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12361
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12365
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankTransactionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12366
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankTransactionService, providedIn: 'root' }); }
|
12362
12367
|
}
|
12363
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12368
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankTransactionService, decorators: [{
|
12364
12369
|
type: Injectable,
|
12365
12370
|
args: [{
|
12366
12371
|
providedIn: 'root'
|
@@ -12394,10 +12399,10 @@ class BasiqTokenService extends RestService$1 {
|
|
12394
12399
|
const now = new Date().getTime();
|
12395
12400
|
return new BasiqToken(tokenResponse['access_token'], new Date(now + tokenResponse['expires_in'] * 1000));
|
12396
12401
|
}
|
12397
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12398
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12402
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12403
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqTokenService, providedIn: 'root' }); }
|
12399
12404
|
}
|
12400
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12405
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqTokenService, decorators: [{
|
12401
12406
|
type: Injectable,
|
12402
12407
|
args: [{
|
12403
12408
|
providedIn: 'root'
|
@@ -12539,10 +12544,10 @@ class BasiqService extends RestService$1 {
|
|
12539
12544
|
}
|
12540
12545
|
});
|
12541
12546
|
}
|
12542
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12543
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12547
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: BankConnectionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12548
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqService, providedIn: 'root' }); }
|
12544
12549
|
}
|
12545
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12550
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqService, decorators: [{
|
12546
12551
|
type: Injectable,
|
12547
12552
|
args: [{
|
12548
12553
|
providedIn: 'root'
|
@@ -12570,10 +12575,10 @@ class BankTransactionCommentService extends RestService$1 {
|
|
12570
12575
|
this.endpointUri = 'bank-transaction-comments';
|
12571
12576
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
12572
12577
|
}
|
12573
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12574
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12578
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankTransactionCommentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12579
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankTransactionCommentService, providedIn: 'root' }); }
|
12575
12580
|
}
|
12576
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankTransactionCommentService, decorators: [{
|
12577
12582
|
type: Injectable,
|
12578
12583
|
args: [{
|
12579
12584
|
providedIn: 'root'
|
@@ -12599,10 +12604,10 @@ class BankService extends RestService$1 {
|
|
12599
12604
|
this.endpointUri = 'banks';
|
12600
12605
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
12601
12606
|
}
|
12602
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12603
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12607
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12608
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankService, providedIn: 'root' }); }
|
12604
12609
|
}
|
12605
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12610
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankService, decorators: [{
|
12606
12611
|
type: Injectable,
|
12607
12612
|
args: [{
|
12608
12613
|
providedIn: 'root'
|
@@ -12617,10 +12622,10 @@ class BudgetService extends RestService$1 {
|
|
12617
12622
|
this.endpointUri = 'budgets';
|
12618
12623
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
12619
12624
|
}
|
12620
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12621
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12625
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BudgetService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12626
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BudgetService, providedIn: 'root' }); }
|
12622
12627
|
}
|
12623
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12628
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BudgetService, decorators: [{
|
12624
12629
|
type: Injectable,
|
12625
12630
|
args: [{
|
12626
12631
|
providedIn: 'root'
|
@@ -12646,10 +12651,10 @@ class ChartAccountsDepreciationService extends RestService$1 {
|
|
12646
12651
|
this.collectionClass = Collection;
|
12647
12652
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
12648
12653
|
}
|
12649
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12650
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12654
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12655
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' }); }
|
12651
12656
|
}
|
12652
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12657
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
|
12653
12658
|
type: Injectable,
|
12654
12659
|
args: [{
|
12655
12660
|
providedIn: 'root'
|
@@ -12688,10 +12693,10 @@ class ChartAccountsService extends RestService$1 {
|
|
12688
12693
|
return headings;
|
12689
12694
|
}));
|
12690
12695
|
}
|
12691
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12692
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12696
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12697
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsService, providedIn: 'root' }); }
|
12693
12698
|
}
|
12694
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12699
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsService, decorators: [{
|
12695
12700
|
type: Injectable,
|
12696
12701
|
args: [{
|
12697
12702
|
providedIn: 'root'
|
@@ -12775,10 +12780,10 @@ class ChatService extends RestService$1 {
|
|
12775
12780
|
this.setCache(cache, true);
|
12776
12781
|
}, ['post']);
|
12777
12782
|
}
|
12778
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12779
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12783
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChatService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12784
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChatService, providedIn: 'root' }); }
|
12780
12785
|
}
|
12781
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12786
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChatService, decorators: [{
|
12782
12787
|
type: Injectable,
|
12783
12788
|
args: [{
|
12784
12789
|
providedIn: 'root'
|
@@ -12808,10 +12813,10 @@ class MessageService extends RestService$1 {
|
|
12808
12813
|
getUnreadChatsAmount() {
|
12809
12814
|
return this.get().pipe(map((messages) => messages.getUnreadChatsAmount()));
|
12810
12815
|
}
|
12811
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12812
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12816
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MessageService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12817
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MessageService, providedIn: 'root' }); }
|
12813
12818
|
}
|
12814
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12819
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MessageService, decorators: [{
|
12815
12820
|
type: Injectable,
|
12816
12821
|
args: [{
|
12817
12822
|
providedIn: 'root'
|
@@ -12880,10 +12885,10 @@ class MessageDocumentService extends RestService$1 {
|
|
12880
12885
|
addBatch(chatId, files) {
|
12881
12886
|
return combineLatest(files.map((file) => this.add(chatId, file))).pipe(map((docsBase) => docsBase.map((docBase) => plainToClass(MessageDocument, docBase))));
|
12882
12887
|
}
|
12883
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12884
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12888
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MessageDocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12889
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MessageDocumentService, providedIn: 'root' }); }
|
12885
12890
|
}
|
12886
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12891
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MessageDocumentService, decorators: [{
|
12887
12892
|
type: Injectable,
|
12888
12893
|
args: [{
|
12889
12894
|
providedIn: 'root'
|
@@ -12978,10 +12983,10 @@ class DepreciationService extends RestService$1 {
|
|
12978
12983
|
this.refreshCache();
|
12979
12984
|
});
|
12980
12985
|
}
|
12981
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12982
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12986
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DepreciationService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12987
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DepreciationService, providedIn: 'root' }); }
|
12983
12988
|
}
|
12984
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12989
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DepreciationService, decorators: [{
|
12985
12990
|
type: Injectable,
|
12986
12991
|
args: [{
|
12987
12992
|
providedIn: 'root'
|
@@ -13003,10 +13008,10 @@ class DepreciationCapitalProjectService extends RestService$1 {
|
|
13003
13008
|
this.endpointUri = 'depreciation-capital-projects';
|
13004
13009
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
13005
13010
|
}
|
13006
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13007
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13011
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DepreciationCapitalProjectService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13012
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' }); }
|
13008
13013
|
}
|
13009
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13014
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
|
13010
13015
|
type: Injectable,
|
13011
13016
|
args: [{
|
13012
13017
|
providedIn: 'root'
|
@@ -13032,10 +13037,10 @@ class DocumentFolderService extends RestService$1 {
|
|
13032
13037
|
this.modelClass = DocumentFolder;
|
13033
13038
|
this.disabledMethods = ['deleteBatch', 'postBatch', 'putBatch'];
|
13034
13039
|
}
|
13035
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13036
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13040
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13041
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DocumentFolderService, providedIn: 'root' }); }
|
13037
13042
|
}
|
13038
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13043
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DocumentFolderService, decorators: [{
|
13039
13044
|
type: Injectable,
|
13040
13045
|
args: [{
|
13041
13046
|
providedIn: 'root'
|
@@ -13060,10 +13065,10 @@ class DocumentService extends RestService$1 {
|
|
13060
13065
|
postFiles(folder, files) {
|
13061
13066
|
return this.postParallel(files.map(file => plainToClass(Document, { folder, file })));
|
13062
13067
|
}
|
13063
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13064
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13068
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13069
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DocumentService, providedIn: 'root' }); }
|
13065
13070
|
}
|
13066
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13071
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: DocumentService, decorators: [{
|
13067
13072
|
type: Injectable,
|
13068
13073
|
args: [{
|
13069
13074
|
providedIn: 'root'
|
@@ -13148,10 +13153,10 @@ class FacebookService {
|
|
13148
13153
|
});
|
13149
13154
|
});
|
13150
13155
|
}
|
13151
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13152
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13156
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FacebookService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13157
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FacebookService, providedIn: 'root' }); }
|
13153
13158
|
}
|
13154
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13159
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FacebookService, decorators: [{
|
13155
13160
|
type: Injectable,
|
13156
13161
|
args: [{
|
13157
13162
|
providedIn: 'root'
|
@@ -13218,10 +13223,10 @@ class GoogleService {
|
|
13218
13223
|
logout() {
|
13219
13224
|
google.accounts.id.disableAutoSelect();
|
13220
13225
|
}
|
13221
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13222
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13226
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: GoogleService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13227
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: GoogleService, providedIn: 'root' }); }
|
13223
13228
|
}
|
13224
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13229
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: GoogleService, decorators: [{
|
13225
13230
|
type: Injectable,
|
13226
13231
|
args: [{
|
13227
13232
|
providedIn: 'root'
|
@@ -13253,10 +13258,10 @@ class FileService extends RestService$1 {
|
|
13253
13258
|
download(file) {
|
13254
13259
|
return this.http.get(`${this.apiUrl}/${file.id}/download`, { responseType: 'blob' });
|
13255
13260
|
}
|
13256
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13257
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13261
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13262
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FileService, providedIn: 'root' }); }
|
13258
13263
|
}
|
13259
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13264
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FileService, decorators: [{
|
13260
13265
|
type: Injectable,
|
13261
13266
|
args: [{
|
13262
13267
|
providedIn: 'root'
|
@@ -13346,10 +13351,10 @@ class ClientInviteService extends RestService$1 {
|
|
13346
13351
|
}
|
13347
13352
|
});
|
13348
13353
|
}
|
13349
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13350
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13354
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientInviteService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13355
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientInviteService, providedIn: 'root' }); }
|
13351
13356
|
}
|
13352
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13357
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientInviteService, decorators: [{
|
13353
13358
|
type: Injectable,
|
13354
13359
|
args: [{
|
13355
13360
|
providedIn: 'root'
|
@@ -13439,10 +13444,10 @@ class ClientMovementService extends RestService$1 {
|
|
13439
13444
|
// this.updateCache([clientMovement], 'delete');
|
13440
13445
|
}));
|
13441
13446
|
}
|
13442
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13443
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13447
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13448
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientMovementService, providedIn: 'root' }); }
|
13444
13449
|
}
|
13445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientMovementService, decorators: [{
|
13446
13451
|
type: Injectable,
|
13447
13452
|
args: [{
|
13448
13453
|
providedIn: 'root'
|
@@ -13503,10 +13508,10 @@ class EmployeeService extends RestService$1 {
|
|
13503
13508
|
index === -1 ? employee.roles.push(role) : employee.roles.splice(index, 1);
|
13504
13509
|
return super.put(employee, `${this.environment.apiV2}/${this.endpointUri}/${employee.id}`);
|
13505
13510
|
}
|
13506
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13507
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13511
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13512
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeService, providedIn: 'root' }); }
|
13508
13513
|
}
|
13509
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13514
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeService, decorators: [{
|
13510
13515
|
type: Injectable,
|
13511
13516
|
args: [{
|
13512
13517
|
providedIn: 'root'
|
@@ -13567,10 +13572,10 @@ class EmployeeInviteService extends RestService$1 {
|
|
13567
13572
|
return updatedInvite;
|
13568
13573
|
}));
|
13569
13574
|
}
|
13570
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13571
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13575
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13576
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' }); }
|
13572
13577
|
}
|
13573
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13578
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeInviteService, decorators: [{
|
13574
13579
|
type: Injectable,
|
13575
13580
|
args: [{
|
13576
13581
|
providedIn: 'root'
|
@@ -13594,10 +13599,10 @@ class ClientPortfolioReportService {
|
|
13594
13599
|
return new ClientPortfolioReportCollection(clientReports);
|
13595
13600
|
}));
|
13596
13601
|
}
|
13597
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13598
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13602
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientPortfolioReportService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13603
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' }); }
|
13599
13604
|
}
|
13600
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13605
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
|
13601
13606
|
type: Injectable,
|
13602
13607
|
args: [{
|
13603
13608
|
providedIn: 'root'
|
@@ -13651,10 +13656,10 @@ class FirmService {
|
|
13651
13656
|
getByType(type) {
|
13652
13657
|
return this.getAll().pipe(map((firms) => firms.filter((firm) => firm.type === type)));
|
13653
13658
|
}
|
13654
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13655
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13659
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FirmService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13660
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FirmService, providedIn: 'root' }); }
|
13656
13661
|
}
|
13657
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13662
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FirmService, decorators: [{
|
13658
13663
|
type: Injectable,
|
13659
13664
|
args: [{
|
13660
13665
|
providedIn: 'root'
|
@@ -13672,10 +13677,10 @@ class FirmBranchService extends RestService$1 {
|
|
13672
13677
|
this.collectionClass = (Collection);
|
13673
13678
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
13674
13679
|
}
|
13675
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13676
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13680
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FirmBranchService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13681
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FirmBranchService, providedIn: 'root' }); }
|
13677
13682
|
}
|
13678
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13683
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FirmBranchService, decorators: [{
|
13679
13684
|
type: Injectable,
|
13680
13685
|
args: [{
|
13681
13686
|
providedIn: 'root'
|
@@ -13916,10 +13921,10 @@ class RestService {
|
|
13916
13921
|
getCache() {
|
13917
13922
|
return clone(this.cache);
|
13918
13923
|
}
|
13919
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13920
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13924
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13925
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
13921
13926
|
}
|
13922
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13927
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RestService, decorators: [{
|
13923
13928
|
type: Injectable,
|
13924
13929
|
args: [{
|
13925
13930
|
providedIn: 'root'
|
@@ -13994,10 +13999,10 @@ class IncomeSourceForecastService extends RestService {
|
|
13994
13999
|
return incomeSource.incomeSourceForecasts;
|
13995
14000
|
}).flat();
|
13996
14001
|
}
|
13997
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13998
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14002
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14003
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' }); }
|
13999
14004
|
}
|
14000
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14005
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
|
14001
14006
|
type: Injectable,
|
14002
14007
|
args: [{
|
14003
14008
|
providedIn: 'root'
|
@@ -14071,10 +14076,10 @@ class SalaryForecastService extends RestService {
|
|
14071
14076
|
return incomeSource.salaryForecasts;
|
14072
14077
|
}).flat();
|
14073
14078
|
}
|
14074
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14075
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14079
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SalaryForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14080
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SalaryForecastService, providedIn: 'root' }); }
|
14076
14081
|
}
|
14077
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14082
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SalaryForecastService, decorators: [{
|
14078
14083
|
type: Injectable,
|
14079
14084
|
args: [{
|
14080
14085
|
providedIn: 'root'
|
@@ -14156,10 +14161,10 @@ class SoleForecastService extends RestService {
|
|
14156
14161
|
this.refreshCache();
|
14157
14162
|
});
|
14158
14163
|
}
|
14159
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14160
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14164
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14165
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleForecastService, providedIn: 'root' }); }
|
14161
14166
|
}
|
14162
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14167
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleForecastService, decorators: [{
|
14163
14168
|
type: Injectable,
|
14164
14169
|
args: [{
|
14165
14170
|
providedIn: 'root'
|
@@ -14242,10 +14247,10 @@ class IncomeSourceService extends RestService {
|
|
14242
14247
|
this.refreshCache();
|
14243
14248
|
});
|
14244
14249
|
}
|
14245
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14246
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14250
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14251
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceService, providedIn: 'root' }); }
|
14247
14252
|
}
|
14248
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14253
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceService, decorators: [{
|
14249
14254
|
type: Injectable,
|
14250
14255
|
args: [{
|
14251
14256
|
providedIn: 'root'
|
@@ -14318,10 +14323,10 @@ class BorrowingExpenseService {
|
|
14318
14323
|
return combinedBorrowingExpenses;
|
14319
14324
|
}));
|
14320
14325
|
}
|
14321
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14322
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14326
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BorrowingExpenseService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14327
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' }); }
|
14323
14328
|
}
|
14324
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14329
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BorrowingExpenseService, decorators: [{
|
14325
14330
|
type: Injectable,
|
14326
14331
|
args: [{
|
14327
14332
|
providedIn: 'root'
|
@@ -14405,10 +14410,10 @@ class LoanService extends RestService$1 {
|
|
14405
14410
|
delete(loan) {
|
14406
14411
|
return super.delete(loan, `${this.environment.apiV2}/loans/${loan.id}`);
|
14407
14412
|
}
|
14408
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14409
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14413
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: LoanService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14414
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: LoanService, providedIn: 'root' }); }
|
14410
14415
|
}
|
14411
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14416
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: LoanService, decorators: [{
|
14412
14417
|
type: Injectable,
|
14413
14418
|
args: [{
|
14414
14419
|
providedIn: 'root'
|
@@ -14434,10 +14439,10 @@ class BorrowingReportService extends RestService$1 {
|
|
14434
14439
|
this.collectionClass = Collection;
|
14435
14440
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
14436
14441
|
}
|
14437
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14438
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14442
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BorrowingReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14443
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BorrowingReportService, providedIn: 'root' }); }
|
14439
14444
|
}
|
14440
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14445
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BorrowingReportService, decorators: [{
|
14441
14446
|
type: Injectable,
|
14442
14447
|
args: [{
|
14443
14448
|
providedIn: 'root'
|
@@ -14462,10 +14467,10 @@ class PropertyCategoryService extends RestService$1 {
|
|
14462
14467
|
this.endpointUri = 'properties/categories';
|
14463
14468
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
14464
14469
|
}
|
14465
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14466
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14470
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14471
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' }); }
|
14467
14472
|
}
|
14468
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14473
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCategoryService, decorators: [{
|
14469
14474
|
type: Injectable,
|
14470
14475
|
args: [{
|
14471
14476
|
providedIn: 'root'
|
@@ -14487,10 +14492,10 @@ class PropertyCategoryMovementService extends RestService$1 {
|
|
14487
14492
|
this.listenCSE(Property, this.refreshCache, ['post']);
|
14488
14493
|
this.listenCSE(PropertyValuation, this.refreshCache);
|
14489
14494
|
}
|
14490
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14491
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14495
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCategoryMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14496
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' }); }
|
14492
14497
|
}
|
14493
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14498
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
|
14494
14499
|
type: Injectable,
|
14495
14500
|
args: [{
|
14496
14501
|
providedIn: 'root'
|
@@ -14571,10 +14576,10 @@ class TaxExemptionService extends DataService {
|
|
14571
14576
|
this.collectionClass = TaxExemptionCollection;
|
14572
14577
|
this.setCache(TaxExemptions);
|
14573
14578
|
}
|
14574
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14575
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14579
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxExemptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14580
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxExemptionService, providedIn: 'root' }); }
|
14576
14581
|
}
|
14577
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14582
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxExemptionService, decorators: [{
|
14578
14583
|
type: Injectable,
|
14579
14584
|
args: [{
|
14580
14585
|
providedIn: 'root'
|
@@ -14590,10 +14595,10 @@ class PropertySaleService extends RestService$1 {
|
|
14590
14595
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
14591
14596
|
this.roles = [UserRolesEnum$1.PROPERTY_TANK];
|
14592
14597
|
}
|
14593
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14594
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14598
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14599
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertySaleService, providedIn: 'root' }); }
|
14595
14600
|
}
|
14596
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14601
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertySaleService, decorators: [{
|
14597
14602
|
type: Injectable,
|
14598
14603
|
args: [{
|
14599
14604
|
providedIn: 'root'
|
@@ -14647,10 +14652,10 @@ class PropertyShareService extends RestService$1 {
|
|
14647
14652
|
listenSalesChanges() {
|
14648
14653
|
this.listenCSE(PropertySale, this.refreshCache, ['post', 'delete']);
|
14649
14654
|
}
|
14650
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14651
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14655
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyShareService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14656
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyShareService, providedIn: 'root' }); }
|
14652
14657
|
}
|
14653
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14658
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyShareService, decorators: [{
|
14654
14659
|
type: Injectable,
|
14655
14660
|
args: [{
|
14656
14661
|
providedIn: 'root'
|
@@ -14669,10 +14674,10 @@ class PropertyValuationService extends RestService$1 {
|
|
14669
14674
|
this.disabledMethods = ['postBatch', 'putBatch'];
|
14670
14675
|
this.useBackendError = true;
|
14671
14676
|
}
|
14672
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14673
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14677
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyValuationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14678
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyValuationService, providedIn: 'root' }); }
|
14674
14679
|
}
|
14675
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14680
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyValuationService, decorators: [{
|
14676
14681
|
type: Injectable,
|
14677
14682
|
args: [{
|
14678
14683
|
providedIn: 'root'
|
@@ -14816,10 +14821,10 @@ class PropertyService extends RestService$1 {
|
|
14816
14821
|
return of({ growthPercent: 0, lowMarketValue: 0, marketValue: 0, highMarketValue: 0, confidence: PropertyCorelogicStatsConfidenceTypeEnum.LOW });
|
14817
14822
|
}));
|
14818
14823
|
}
|
14819
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14820
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14824
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14825
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
|
14821
14826
|
}
|
14822
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14827
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyService, decorators: [{
|
14823
14828
|
type: Injectable,
|
14824
14829
|
args: [{
|
14825
14830
|
providedIn: 'root'
|
@@ -14876,10 +14881,10 @@ class ServiceNotificationService extends RestService {
|
|
14876
14881
|
this.eventDispatcherService.dispatch(new AppEvent(AppEventTypeEnum.NOTIFICATION_ADDED, notification));
|
14877
14882
|
});
|
14878
14883
|
}
|
14879
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14880
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14884
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServiceNotificationService, deps: [{ token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14885
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' }); }
|
14881
14886
|
}
|
14882
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14887
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServiceNotificationService, decorators: [{
|
14883
14888
|
type: Injectable,
|
14884
14889
|
args: [{
|
14885
14890
|
providedIn: 'root'
|
@@ -14902,10 +14907,10 @@ class SoleBusinessService extends RestService$1 {
|
|
14902
14907
|
this.endpointUri = 'sole-businesses';
|
14903
14908
|
this.roles = [UserRolesEnum$1.SOLE_TANK];
|
14904
14909
|
}
|
14905
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14906
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14910
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14911
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessService, providedIn: 'root' }); }
|
14907
14912
|
}
|
14908
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14913
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessService, decorators: [{
|
14909
14914
|
type: Injectable,
|
14910
14915
|
args: [{
|
14911
14916
|
providedIn: 'root'
|
@@ -14918,10 +14923,10 @@ class SoleBusinessActivityService extends RestService {
|
|
14918
14923
|
this.modelClass = SoleBusinessActivity;
|
14919
14924
|
this.url = 'sole-business-activities';
|
14920
14925
|
}
|
14921
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14922
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14926
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14927
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' }); }
|
14923
14928
|
}
|
14924
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14929
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
|
14925
14930
|
type: Injectable,
|
14926
14931
|
args: [{
|
14927
14932
|
providedIn: 'root'
|
@@ -14950,10 +14955,10 @@ class SoleBusinessLossService extends RestService$1 {
|
|
14950
14955
|
this.refreshCache();
|
14951
14956
|
});
|
14952
14957
|
}
|
14953
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14954
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14958
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessLossService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14959
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' }); }
|
14955
14960
|
}
|
14956
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14961
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessLossService, decorators: [{
|
14957
14962
|
type: Injectable,
|
14958
14963
|
args: [{
|
14959
14964
|
providedIn: 'root'
|
@@ -14972,10 +14977,10 @@ class SoleBusinessLossOffsetRuleService extends RestService {
|
|
14972
14977
|
this.modelClass = SoleBusinessLossOffsetRule;
|
14973
14978
|
this.url = 'sole-business-loss-offset-rules';
|
14974
14979
|
}
|
14975
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14976
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14980
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14981
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' }); }
|
14977
14982
|
}
|
14978
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14983
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
|
14979
14984
|
type: Injectable,
|
14980
14985
|
args: [{
|
14981
14986
|
providedIn: 'root'
|
@@ -14988,10 +14993,10 @@ class SoleContactService extends RestService {
|
|
14988
14993
|
this.modelClass = SoleContact;
|
14989
14994
|
this.url = 'sole-contacts';
|
14990
14995
|
}
|
14991
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14992
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14996
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14997
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleContactService, providedIn: 'root' }); }
|
14993
14998
|
}
|
14994
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14999
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleContactService, decorators: [{
|
14995
15000
|
type: Injectable,
|
14996
15001
|
args: [{
|
14997
15002
|
providedIn: 'root'
|
@@ -15047,10 +15052,10 @@ class SoleDepreciationMethodService {
|
|
15047
15052
|
this.get().subscribe();
|
15048
15053
|
});
|
15049
15054
|
}
|
15050
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15051
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15055
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDepreciationMethodService, deps: [{ token: i1.HttpClient }, { token: 'environment' }, { token: EventDispatcherService }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15056
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDepreciationMethodService, providedIn: 'root' }); }
|
15052
15057
|
}
|
15053
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15058
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDepreciationMethodService, decorators: [{
|
15054
15059
|
type: Injectable,
|
15055
15060
|
args: [{
|
15056
15061
|
providedIn: 'root'
|
@@ -15075,10 +15080,10 @@ class SoleDetailsService extends RestService$1 {
|
|
15075
15080
|
get() {
|
15076
15081
|
return super.get().pipe(map(soleDetails => soleDetails.length ? soleDetails : new Collection([plainToClass(SoleDetails, {})])));
|
15077
15082
|
}
|
15078
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15079
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15083
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15084
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDetailsService, providedIn: 'root' }); }
|
15080
15085
|
}
|
15081
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15086
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDetailsService, decorators: [{
|
15082
15087
|
type: Injectable,
|
15083
15088
|
args: [{
|
15084
15089
|
providedIn: 'root'
|
@@ -15112,10 +15117,10 @@ class SoleInvoiceService extends RestService$1 {
|
|
15112
15117
|
}
|
15113
15118
|
return this.cache.last.number + 1;
|
15114
15119
|
}
|
15115
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15116
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15120
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleInvoiceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15121
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' }); }
|
15117
15122
|
}
|
15118
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleInvoiceService, decorators: [{
|
15119
15124
|
type: Injectable,
|
15120
15125
|
args: [{
|
15121
15126
|
providedIn: 'root'
|
@@ -15131,10 +15136,10 @@ class SoleInvoiceTemplateService extends RestService {
|
|
15131
15136
|
this.modelClass = SoleInvoiceTemplate;
|
15132
15137
|
this.url = 'sole-invoice-templates';
|
15133
15138
|
}
|
15134
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15135
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15139
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15140
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' }); }
|
15136
15141
|
}
|
15137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
|
15138
15143
|
type: Injectable,
|
15139
15144
|
args: [{
|
15140
15145
|
providedIn: 'root'
|
@@ -15155,10 +15160,10 @@ class BasReportService extends RestService {
|
|
15155
15160
|
this.modelClass = BasReport;
|
15156
15161
|
this.url = 'bas-reports';
|
15157
15162
|
}
|
15158
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15159
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15163
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15164
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasReportService, providedIn: 'root' }); }
|
15160
15165
|
}
|
15161
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15166
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasReportService, decorators: [{
|
15162
15167
|
type: Injectable,
|
15163
15168
|
args: [{
|
15164
15169
|
providedIn: 'root'
|
@@ -15182,10 +15187,10 @@ class ServicePaymentService extends RestService$1 {
|
|
15182
15187
|
}
|
15183
15188
|
return this.http.get(`${this.environment.apiV2}/service-payments/${payment.id}/invoice-url`);
|
15184
15189
|
}
|
15185
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15186
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15190
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15191
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePaymentService, providedIn: 'root' }); }
|
15187
15192
|
}
|
15188
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15193
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePaymentService, decorators: [{
|
15189
15194
|
type: Injectable,
|
15190
15195
|
args: [{
|
15191
15196
|
providedIn: 'root'
|
@@ -15217,10 +15222,10 @@ class ServicePaymentMethodService extends RestService$1 {
|
|
15217
15222
|
return this.http.put(`${this.apiUrl}/${paymentMethod.id}/default`, {})
|
15218
15223
|
.pipe(map((updatedPaymentMethod) => plainToClass(ServicePaymentMethod, updatedPaymentMethod)));
|
15219
15224
|
}
|
15220
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15221
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15225
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePaymentMethodService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15226
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' }); }
|
15222
15227
|
}
|
15223
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15228
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
|
15224
15229
|
type: Injectable,
|
15225
15230
|
args: [{
|
15226
15231
|
providedIn: 'root'
|
@@ -15241,10 +15246,10 @@ class ServicePriceService extends RestService$1 {
|
|
15241
15246
|
this.collectionClass = ServicePriceCollection;
|
15242
15247
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
15243
15248
|
}
|
15244
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15245
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15249
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15250
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePriceService, providedIn: 'root' }); }
|
15246
15251
|
}
|
15247
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15252
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServicePriceService, decorators: [{
|
15248
15253
|
type: Injectable,
|
15249
15254
|
args: [{
|
15250
15255
|
providedIn: 'root'
|
@@ -15329,10 +15334,10 @@ class SubscriptionService extends RestService$1 {
|
|
15329
15334
|
get(path = this.apiUrl) {
|
15330
15335
|
return super.get(path).pipe(map(subscriptions => subscriptions.sortBy('isActive', 'ask')));
|
15331
15336
|
}
|
15332
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15333
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15337
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SubscriptionService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15338
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SubscriptionService, providedIn: 'root' }); }
|
15334
15339
|
}
|
15335
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15340
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SubscriptionService, decorators: [{
|
15336
15341
|
type: Injectable,
|
15337
15342
|
args: [{
|
15338
15343
|
providedIn: 'root'
|
@@ -15350,10 +15355,10 @@ class ServiceProductService extends RestService$1 {
|
|
15350
15355
|
this.endpointUri = 'service-products';
|
15351
15356
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
15352
15357
|
}
|
15353
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15354
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15358
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15359
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServiceProductService, providedIn: 'root' }); }
|
15355
15360
|
}
|
15356
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ServiceProductService, decorators: [{
|
15357
15362
|
type: Injectable,
|
15358
15363
|
args: [{
|
15359
15364
|
providedIn: 'root'
|
@@ -15489,10 +15494,10 @@ class TaxReviewHistoryService extends RestService {
|
|
15489
15494
|
this.updateCache();
|
15490
15495
|
});
|
15491
15496
|
}
|
15492
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15493
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15497
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReviewHistoryService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15498
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' }); }
|
15494
15499
|
}
|
15495
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15500
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
|
15496
15501
|
type: Injectable,
|
15497
15502
|
args: [{
|
15498
15503
|
providedIn: 'root'
|
@@ -15585,10 +15590,10 @@ class TaxReviewService extends RestService {
|
|
15585
15590
|
}
|
15586
15591
|
});
|
15587
15592
|
}
|
15588
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15589
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15593
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReviewService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15594
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReviewService, providedIn: 'root' }); }
|
15590
15595
|
}
|
15591
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15596
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReviewService, decorators: [{
|
15592
15597
|
type: Injectable,
|
15593
15598
|
args: [{
|
15594
15599
|
providedIn: 'root'
|
@@ -15919,10 +15924,10 @@ class TaxSummaryService {
|
|
15919
15924
|
this.getForecast().subscribe();
|
15920
15925
|
});
|
15921
15926
|
}
|
15922
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15923
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15927
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxSummaryService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15928
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxSummaryService, providedIn: 'root' }); }
|
15924
15929
|
}
|
15925
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15930
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxSummaryService, decorators: [{
|
15926
15931
|
type: Injectable,
|
15927
15932
|
args: [{
|
15928
15933
|
providedIn: 'root'
|
@@ -15943,10 +15948,10 @@ class AllocationRuleService extends RestService$1 {
|
|
15943
15948
|
getCustomHttpErrorMessages() {
|
15944
15949
|
return { 422: 'You can only have 10 conditions in a rule' };
|
15945
15950
|
}
|
15946
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15947
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15951
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15952
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AllocationRuleService, providedIn: 'root' }); }
|
15948
15953
|
}
|
15949
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15954
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AllocationRuleService, decorators: [{
|
15950
15955
|
type: Injectable,
|
15951
15956
|
args: [{
|
15952
15957
|
providedIn: 'root'
|
@@ -16051,10 +16056,10 @@ class TransactionAllocationService extends RestService {
|
|
16051
16056
|
}
|
16052
16057
|
});
|
16053
16058
|
}
|
16054
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16055
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16059
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TransactionAllocationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16060
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' }); }
|
16056
16061
|
}
|
16057
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TransactionAllocationService, decorators: [{
|
16058
16063
|
type: Injectable,
|
16059
16064
|
args: [{
|
16060
16065
|
providedIn: 'root'
|
@@ -16306,10 +16311,10 @@ class TransactionService extends RestService {
|
|
16306
16311
|
}
|
16307
16312
|
});
|
16308
16313
|
}
|
16309
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16310
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16314
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TransactionService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16315
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TransactionService, providedIn: 'root' }); }
|
16311
16316
|
}
|
16312
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16317
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TransactionService, decorators: [{
|
16313
16318
|
type: Injectable,
|
16314
16319
|
args: [{
|
16315
16320
|
providedIn: 'root'
|
@@ -16335,10 +16340,10 @@ class PriorTransactionService extends RestService$1 {
|
|
16335
16340
|
const financialYear = new FinancialYear(new FinancialYear().year - 1);
|
16336
16341
|
return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(transactions => transactions.filterByFinancialYear('date', null, financialYear)));
|
16337
16342
|
}
|
16338
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16339
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16343
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PriorTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16344
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PriorTransactionService, providedIn: 'root' }); }
|
16340
16345
|
}
|
16341
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16346
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PriorTransactionService, decorators: [{
|
16342
16347
|
type: Injectable,
|
16343
16348
|
args: [{
|
16344
16349
|
providedIn: 'root'
|
@@ -16360,10 +16365,10 @@ class InvoiceTransactionsService extends RestService$1 {
|
|
16360
16365
|
this.endpointUri = 'invoices/transactions';
|
16361
16366
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
16362
16367
|
}
|
16363
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16364
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16368
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InvoiceTransactionsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16369
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InvoiceTransactionsService, providedIn: 'root' }); }
|
16365
16370
|
}
|
16366
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16371
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InvoiceTransactionsService, decorators: [{
|
16367
16372
|
type: Injectable,
|
16368
16373
|
args: [{
|
16369
16374
|
providedIn: 'root'
|
@@ -16387,10 +16392,10 @@ class YoutubeService {
|
|
16387
16392
|
title: item.snippet.title
|
16388
16393
|
}))));
|
16389
16394
|
}
|
16390
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16391
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16395
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: YoutubeService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16396
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: YoutubeService, providedIn: 'root' }); }
|
16392
16397
|
}
|
16393
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: YoutubeService, decorators: [{
|
16394
16399
|
type: Injectable,
|
16395
16400
|
args: [{
|
16396
16401
|
providedIn: 'root'
|
@@ -16410,10 +16415,10 @@ class VehicleService extends RestService$1 {
|
|
16410
16415
|
this.collectionClass = (Collection);
|
16411
16416
|
this.modelClass = Vehicle;
|
16412
16417
|
}
|
16413
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16414
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16418
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16419
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleService, providedIn: 'root' }); }
|
16415
16420
|
}
|
16416
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleService, decorators: [{
|
16417
16422
|
type: Injectable,
|
16418
16423
|
args: [{
|
16419
16424
|
providedIn: 'root'
|
@@ -16443,10 +16448,10 @@ class VehicleClaimService extends RestService$1 {
|
|
16443
16448
|
this.refreshCache();
|
16444
16449
|
});
|
16445
16450
|
}
|
16446
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16447
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16451
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleClaimService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16452
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleClaimService, providedIn: 'root' }); }
|
16448
16453
|
}
|
16449
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16454
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleClaimService, decorators: [{
|
16450
16455
|
type: Injectable,
|
16451
16456
|
args: [{
|
16452
16457
|
providedIn: 'root'
|
@@ -16508,10 +16513,10 @@ class VehicleClaimDetailsService {
|
|
16508
16513
|
const vehicleClaimDetails = plainToClass(VehicleClaimDetails, Object.assign({}, this.cache, { isManual: true }));
|
16509
16514
|
this.update(vehicleClaimDetails).subscribe();
|
16510
16515
|
}
|
16511
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16512
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16516
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleClaimDetailsService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: EventDispatcherService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16517
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleClaimDetailsService, providedIn: 'root' }); }
|
16513
16518
|
}
|
16514
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16519
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleClaimDetailsService, decorators: [{
|
16515
16520
|
type: Injectable,
|
16516
16521
|
args: [{
|
16517
16522
|
providedIn: 'root'
|
@@ -16532,10 +16537,10 @@ class VehicleLogbookService extends RestService$1 {
|
|
16532
16537
|
this.collectionClass = VehicleLogbookCollection;
|
16533
16538
|
this.modelClass = VehicleLogbook;
|
16534
16539
|
}
|
16535
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16536
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16540
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16541
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' }); }
|
16537
16542
|
}
|
16538
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16543
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: VehicleLogbookService, decorators: [{
|
16539
16544
|
type: Injectable,
|
16540
16545
|
args: [{
|
16541
16546
|
providedIn: 'root'
|
@@ -16558,10 +16563,10 @@ class AnnualClientDetailsService extends RestService$1 {
|
|
16558
16563
|
this.endpointUri = 'annual-client-details';
|
16559
16564
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
|
16560
16565
|
}
|
16561
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16562
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16566
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AnnualClientDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16567
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AnnualClientDetailsService, providedIn: 'root' }); }
|
16563
16568
|
}
|
16564
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16569
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
|
16565
16570
|
type: Injectable,
|
16566
16571
|
args: [{
|
16567
16572
|
providedIn: 'root'
|
@@ -16591,10 +16596,10 @@ class OccupationService {
|
|
16591
16596
|
}
|
16592
16597
|
return this.occupationsSubject.asObservable();
|
16593
16598
|
}
|
16594
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16595
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16599
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: OccupationService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16600
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: OccupationService, providedIn: 'root' }); }
|
16596
16601
|
}
|
16597
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16602
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: OccupationService, decorators: [{
|
16598
16603
|
type: Injectable,
|
16599
16604
|
args: [{
|
16600
16605
|
providedIn: 'root'
|
@@ -16616,10 +16621,10 @@ class ClientCouponService extends RestService$1 {
|
|
16616
16621
|
this.endpointUri = 'users/current/promo-code';
|
16617
16622
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
16618
16623
|
}
|
16619
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16620
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16624
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientCouponService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16625
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientCouponService, providedIn: 'root' }); }
|
16621
16626
|
}
|
16622
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16627
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientCouponService, decorators: [{
|
16623
16628
|
type: Injectable,
|
16624
16629
|
args: [{
|
16625
16630
|
providedIn: 'root'
|
@@ -16634,10 +16639,10 @@ class CapitalLossService extends RestService$1 {
|
|
16634
16639
|
this.collectionClass = (Collection);
|
16635
16640
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
16636
16641
|
}
|
16637
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16638
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16642
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CapitalLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16643
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CapitalLossService, providedIn: 'root' }); }
|
16639
16644
|
}
|
16640
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16645
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CapitalLossService, decorators: [{
|
16641
16646
|
type: Injectable,
|
16642
16647
|
args: [{
|
16643
16648
|
providedIn: 'root'
|
@@ -16700,10 +16705,10 @@ class UserEventSettingService extends RestService$1 {
|
|
16700
16705
|
this.endpointUri = 'user-event-settings';
|
16701
16706
|
this.disabledMethods = ['postBatch', 'putBatch', 'delete', 'deleteBatch'];
|
16702
16707
|
}
|
16703
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16704
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16708
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16709
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserEventSettingService, providedIn: 'root' }); }
|
16705
16710
|
}
|
16706
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16711
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserEventSettingService, decorators: [{
|
16707
16712
|
type: Injectable,
|
16708
16713
|
args: [{
|
16709
16714
|
providedIn: 'root'
|
@@ -16718,10 +16723,10 @@ class UserEventTypeService extends RestService$1 {
|
|
16718
16723
|
this.endpointUri = 'user-event-types';
|
16719
16724
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
16720
16725
|
}
|
16721
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16722
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16726
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16727
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserEventTypeService, providedIn: 'root' }); }
|
16723
16728
|
}
|
16724
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16729
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserEventTypeService, decorators: [{
|
16725
16730
|
type: Injectable,
|
16726
16731
|
args: [{
|
16727
16732
|
providedIn: 'root'
|
@@ -16748,10 +16753,10 @@ class UsersInviteService extends RestService {
|
|
16748
16753
|
this.modelClass = RegistrationInvite;
|
16749
16754
|
this.url = 'users/invite';
|
16750
16755
|
}
|
16751
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16752
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16756
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16757
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UsersInviteService, providedIn: 'root' }); }
|
16753
16758
|
}
|
16754
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16759
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UsersInviteService, decorators: [{
|
16755
16760
|
type: Injectable,
|
16756
16761
|
args: [{
|
16757
16762
|
providedIn: 'root'
|
@@ -16866,10 +16871,10 @@ class UserService extends RestService$1 {
|
|
16866
16871
|
this.setCache([user], true);
|
16867
16872
|
}, ['post', 'put']);
|
16868
16873
|
}
|
16869
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16870
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16874
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16875
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserService, providedIn: 'root' }); }
|
16871
16876
|
}
|
16872
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16877
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserService, decorators: [{
|
16873
16878
|
type: Injectable,
|
16874
16879
|
args: [{
|
16875
16880
|
providedIn: 'root'
|
@@ -16890,10 +16895,10 @@ class FinancialYearService {
|
|
16890
16895
|
window.location.reload();
|
16891
16896
|
}));
|
16892
16897
|
}
|
16893
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16894
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16898
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FinancialYearService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16899
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FinancialYearService, providedIn: 'root' }); }
|
16895
16900
|
}
|
16896
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16901
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FinancialYearService, decorators: [{
|
16897
16902
|
type: Injectable,
|
16898
16903
|
args: [{
|
16899
16904
|
providedIn: 'root'
|
@@ -16937,10 +16942,10 @@ class MfaDetailsService extends RestService$1 {
|
|
16937
16942
|
return mfaDetails;
|
16938
16943
|
}));
|
16939
16944
|
}
|
16940
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16941
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16945
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MfaDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16946
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MfaDetailsService, providedIn: 'root' }); }
|
16942
16947
|
}
|
16943
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16948
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MfaDetailsService, decorators: [{
|
16944
16949
|
type: Injectable,
|
16945
16950
|
args: [{
|
16946
16951
|
providedIn: 'root'
|
@@ -16977,10 +16982,10 @@ class HoldingTradeService extends RestService$1 {
|
|
16977
16982
|
}
|
16978
16983
|
});
|
16979
16984
|
}
|
16980
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16981
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16985
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTradeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16986
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTradeService, providedIn: 'root' }); }
|
16982
16987
|
}
|
16983
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16988
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTradeService, decorators: [{
|
16984
16989
|
type: Injectable,
|
16985
16990
|
args: [{
|
16986
16991
|
providedIn: 'root'
|
@@ -17017,10 +17022,10 @@ class HoldingTypeService extends RestService$1 {
|
|
17017
17022
|
}
|
17018
17023
|
});
|
17019
17024
|
}
|
17020
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17021
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17025
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTypeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17026
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTypeService, providedIn: 'root' }); }
|
17022
17027
|
}
|
17023
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17028
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTypeService, decorators: [{
|
17024
17029
|
type: Injectable,
|
17025
17030
|
args: [{
|
17026
17031
|
providedIn: 'root'
|
@@ -17039,10 +17044,10 @@ class HoldingSaleService extends RestService$1 {
|
|
17039
17044
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
17040
17045
|
this.roles = [UserRolesEnum$1.HOLDING_TANK];
|
17041
17046
|
}
|
17042
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17043
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17047
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17048
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingSaleService, providedIn: 'root' }); }
|
17044
17049
|
}
|
17045
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17050
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingSaleService, decorators: [{
|
17046
17051
|
type: Injectable,
|
17047
17052
|
args: [{
|
17048
17053
|
providedIn: 'root'
|
@@ -17084,10 +17089,10 @@ class HoldingTradeImportService extends RestService$1 {
|
|
17084
17089
|
return throwError(error);
|
17085
17090
|
}));
|
17086
17091
|
}
|
17087
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17088
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17092
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTradeImportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17093
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTradeImportService, providedIn: 'root' }); }
|
17089
17094
|
}
|
17090
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17095
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTradeImportService, decorators: [{
|
17091
17096
|
type: Injectable,
|
17092
17097
|
args: [{
|
17093
17098
|
providedIn: 'root'
|
@@ -17181,10 +17186,10 @@ class HoldingTypeExchangeService extends DataService {
|
|
17181
17186
|
this.collectionClass = Collection;
|
17182
17187
|
this.setCache(HoldingTypeExchanges);
|
17183
17188
|
}
|
17184
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17185
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17189
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTypeExchangeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17190
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTypeExchangeService, providedIn: 'root' }); }
|
17186
17191
|
}
|
17187
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17192
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HoldingTypeExchangeService, decorators: [{
|
17188
17193
|
type: Injectable,
|
17189
17194
|
args: [{
|
17190
17195
|
providedIn: 'root'
|
@@ -17218,10 +17223,10 @@ class HomeOfficeClaimService extends RestService$1 {
|
|
17218
17223
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
17219
17224
|
this.roles = [UserRolesEnum$1.WORK_TANK, UserRolesEnum$1.SOLE_TANK];
|
17220
17225
|
}
|
17221
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17222
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17226
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HomeOfficeClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17227
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HomeOfficeClaimService, providedIn: 'root' }); }
|
17223
17228
|
}
|
17224
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17229
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HomeOfficeClaimService, decorators: [{
|
17225
17230
|
type: Injectable,
|
17226
17231
|
args: [{
|
17227
17232
|
providedIn: 'root'
|
@@ -17249,10 +17254,10 @@ class HomeOfficeLogService extends RestService$1 {
|
|
17249
17254
|
listenEvents() {
|
17250
17255
|
this.listenCSE(HomeOfficeClaim, this.refreshCache, ['post']);
|
17251
17256
|
}
|
17252
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17253
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17257
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HomeOfficeLogService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17258
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HomeOfficeLogService, providedIn: 'root' }); }
|
17254
17259
|
}
|
17255
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17260
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HomeOfficeLogService, decorators: [{
|
17256
17261
|
type: Injectable,
|
17257
17262
|
args: [{
|
17258
17263
|
providedIn: 'root'
|
@@ -17292,10 +17297,10 @@ class AussieService extends RestService$1 {
|
|
17292
17297
|
postAppointment() {
|
17293
17298
|
return this.http.delete(`${this.environment.apiV2}/aussie/appointments`);
|
17294
17299
|
}
|
17295
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17296
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17300
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AussieService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17301
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AussieService, providedIn: 'root' }); }
|
17297
17302
|
}
|
17298
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AussieService, decorators: [{
|
17299
17304
|
type: Injectable,
|
17300
17305
|
args: [{
|
17301
17306
|
providedIn: 'root'
|
@@ -17319,10 +17324,10 @@ class SharesightDetailsService extends RestService$1 {
|
|
17319
17324
|
reconnect(sharesightDetails) {
|
17320
17325
|
return this.put(sharesightDetails, `${this.apiUrl}/${sharesightDetails.id}/reconnect`);
|
17321
17326
|
}
|
17322
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17323
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17327
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SharesightDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17328
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SharesightDetailsService, providedIn: 'root' }); }
|
17324
17329
|
}
|
17325
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17330
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SharesightDetailsService, decorators: [{
|
17326
17331
|
type: Injectable,
|
17327
17332
|
args: [{
|
17328
17333
|
providedIn: 'root'
|
@@ -17340,10 +17345,10 @@ class SharesightPortfolioService extends RestService$1 {
|
|
17340
17345
|
getExternal() {
|
17341
17346
|
return this.fetch(`${this.apiUrl}/external`, false);
|
17342
17347
|
}
|
17343
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17344
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17348
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SharesightPortfolioService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17349
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SharesightPortfolioService, providedIn: 'root' }); }
|
17345
17350
|
}
|
17346
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17351
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SharesightPortfolioService, decorators: [{
|
17347
17352
|
type: Injectable,
|
17348
17353
|
args: [{
|
17349
17354
|
providedIn: 'root'
|
@@ -17420,10 +17425,10 @@ class IncomeSourceTypeService extends DataService {
|
|
17420
17425
|
this.collectionClass = Collection;
|
17421
17426
|
this.setCache(IncomeSourceTypes);
|
17422
17427
|
}
|
17423
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17424
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17428
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceTypeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17429
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceTypeService, providedIn: 'root' }); }
|
17425
17430
|
}
|
17426
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17431
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IncomeSourceTypeService, decorators: [{
|
17427
17432
|
type: Injectable,
|
17428
17433
|
args: [{
|
17429
17434
|
providedIn: 'root'
|
@@ -17437,10 +17442,10 @@ class ChartAccountsValueService extends DataService {
|
|
17437
17442
|
this.collectionClass = ChartAccountsValueCollection;
|
17438
17443
|
this.setCache(ChartAccountsValues);
|
17439
17444
|
}
|
17440
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17441
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17445
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsValueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17446
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsValueService, providedIn: 'root' }); }
|
17442
17447
|
}
|
17443
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17448
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChartAccountsValueService, decorators: [{
|
17444
17449
|
type: Injectable,
|
17445
17450
|
args: [{
|
17446
17451
|
providedIn: 'root'
|
@@ -19413,10 +19418,10 @@ class TaxReturnItemService extends DataService {
|
|
19413
19418
|
this.collectionClass = Collection;
|
19414
19419
|
this.setCache(TaxReturnItems);
|
19415
19420
|
}
|
19416
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19417
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
19421
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReturnItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19422
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReturnItemService, providedIn: 'root' }); }
|
19418
19423
|
}
|
19419
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
19424
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TaxReturnItemService, decorators: [{
|
19420
19425
|
type: Injectable,
|
19421
19426
|
args: [{
|
19422
19427
|
providedIn: 'root'
|
@@ -19431,10 +19436,10 @@ class SetupItemService extends RestService$1 {
|
|
19431
19436
|
this.collectionClass = AccountSetupItemCollection;
|
19432
19437
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
19433
19438
|
}
|
19434
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19435
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
19439
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SetupItemService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
19440
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SetupItemService, providedIn: 'root' }); }
|
19436
19441
|
}
|
19437
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
19442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SetupItemService, decorators: [{
|
19438
19443
|
type: Injectable,
|
19439
19444
|
args: [{
|
19440
19445
|
providedIn: 'root'
|
@@ -19617,10 +19622,10 @@ class AccountSetupService {
|
|
19617
19622
|
getSharesightDetails(importEnabled) {
|
19618
19623
|
return this.sharesightDetailsService.getArray().pipe(map(details => details.filter(detail => importEnabled ? detail.importEnabled : detail.exportEnabled)));
|
19619
19624
|
}
|
19620
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19621
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
19625
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AccountSetupService, deps: [{ token: SetupItemService }, { token: PropertyService }, { token: IncomeSourceService }, { token: BankConnectionService }, { token: BankAccountService }, { token: BankTransactionService }, { token: LoanService }, { token: AllocationRuleService }, { token: TransactionAllocationService }, { token: VehicleClaimService }, { token: HomeOfficeClaimService }, { token: TransactionService }, { token: DepreciationService }, { token: SoleBusinessService }, { token: HoldingTradeService }, { token: UserService }, { token: ClientMovementService }, { token: ClientInviteService }, { token: EmployeeService }, { token: EmployeeInviteService }, { token: FirmService }, { token: SharesightDetailsService }, { token: PropertyShareService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19626
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AccountSetupService, providedIn: 'root' }); }
|
19622
19627
|
}
|
19623
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
19628
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AccountSetupService, decorators: [{
|
19624
19629
|
type: Injectable,
|
19625
19630
|
args: [{
|
19626
19631
|
providedIn: 'root'
|
@@ -19635,10 +19640,10 @@ class AdblockDetectorService {
|
|
19635
19640
|
constructor() {
|
19636
19641
|
checkAdBlock().then((isDetected) => this.isDetected = isDetected);
|
19637
19642
|
}
|
19638
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19639
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
19643
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AdblockDetectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19644
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AdblockDetectorService, providedIn: 'root' }); }
|
19640
19645
|
}
|
19641
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
19646
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AdblockDetectorService, decorators: [{
|
19642
19647
|
type: Injectable,
|
19643
19648
|
args: [{
|
19644
19649
|
providedIn: 'root'
|
@@ -19690,10 +19695,10 @@ class MixpanelService {
|
|
19690
19695
|
}
|
19691
19696
|
mixpanel['track_pageview']();
|
19692
19697
|
}
|
19693
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19694
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
19698
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MixpanelService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19699
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MixpanelService, providedIn: 'root' }); }
|
19695
19700
|
}
|
19696
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
19701
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: MixpanelService, decorators: [{
|
19697
19702
|
type: Injectable,
|
19698
19703
|
args: [{
|
19699
19704
|
providedIn: 'root'
|
@@ -19760,10 +19765,10 @@ class JwtService extends JwtHelperService {
|
|
19760
19765
|
isMe(userId) {
|
19761
19766
|
return this.decode().id === userId;
|
19762
19767
|
}
|
19763
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19764
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
19768
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: JwtService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
19769
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: JwtService, providedIn: 'root' }); }
|
19765
19770
|
}
|
19766
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
19771
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: JwtService, decorators: [{
|
19767
19772
|
type: Injectable,
|
19768
19773
|
args: [{
|
19769
19774
|
providedIn: 'root'
|
@@ -19804,10 +19809,10 @@ class AuthService {
|
|
19804
19809
|
this.jwtService.destroyTokens();
|
19805
19810
|
location.replace(url);
|
19806
19811
|
}
|
19807
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19808
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
19812
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AuthService, deps: [{ token: i1.HttpClient }, { token: JwtService }, { token: MixpanelService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19813
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AuthService, providedIn: 'root' }); }
|
19809
19814
|
}
|
19810
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
19815
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AuthService, decorators: [{
|
19811
19816
|
type: Injectable,
|
19812
19817
|
args: [{
|
19813
19818
|
providedIn: 'root'
|
@@ -19944,10 +19949,10 @@ class JwtInterceptor {
|
|
19944
19949
|
// });
|
19945
19950
|
});
|
19946
19951
|
}
|
19947
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19948
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
19952
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: JwtInterceptor, deps: [{ token: JwtService }, { token: AuthService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19953
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: JwtInterceptor }); }
|
19949
19954
|
}
|
19950
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
19955
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: JwtInterceptor, decorators: [{
|
19951
19956
|
type: Injectable
|
19952
19957
|
}], ctorParameters: () => [{ type: JwtService }, { type: AuthService }, { type: undefined, decorators: [{
|
19953
19958
|
type: Inject,
|
@@ -19955,9 +19960,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
19955
19960
|
}] }] });
|
19956
19961
|
|
19957
19962
|
let InterceptorsModule$1 = class InterceptorsModule {
|
19958
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19959
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.
|
19960
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.
|
19963
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
19964
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule }); }
|
19965
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule, providers: [
|
19961
19966
|
{
|
19962
19967
|
provide: HTTP_INTERCEPTORS,
|
19963
19968
|
useClass: JwtInterceptor,
|
@@ -19965,7 +19970,7 @@ let InterceptorsModule$1 = class InterceptorsModule {
|
|
19965
19970
|
}
|
19966
19971
|
] }); }
|
19967
19972
|
};
|
19968
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
19973
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule$1, decorators: [{
|
19969
19974
|
type: NgModule,
|
19970
19975
|
args: [{
|
19971
19976
|
providers: [
|
@@ -19995,13 +20000,13 @@ class CommonModule {
|
|
19995
20000
|
]
|
19996
20001
|
};
|
19997
20002
|
}
|
19998
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19999
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.
|
20003
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
20004
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.6", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
|
20000
20005
|
InterceptorsModule$1] }); }
|
20001
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.
|
20006
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
|
20002
20007
|
InterceptorsModule$1] }); }
|
20003
20008
|
}
|
20004
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20009
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CommonModule, decorators: [{
|
20005
20010
|
type: NgModule,
|
20006
20011
|
args: [{
|
20007
20012
|
declarations: [],
|
@@ -20048,10 +20053,10 @@ class UserSwitcherService {
|
|
20048
20053
|
window.location.replace('/client/dashboard');
|
20049
20054
|
});
|
20050
20055
|
}
|
20051
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20052
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20056
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserSwitcherService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20057
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserSwitcherService, providedIn: 'root' }); }
|
20053
20058
|
}
|
20054
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20059
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserSwitcherService, decorators: [{
|
20055
20060
|
type: Injectable,
|
20056
20061
|
args: [{
|
20057
20062
|
providedIn: 'root'
|
@@ -20095,10 +20100,10 @@ class AssetsService {
|
|
20095
20100
|
delete(entityId, asset) {
|
20096
20101
|
return this.http.delete(`${this.environment.apiV2}/${asset.entityType}/${entityId}/${asset.type}/${asset.id}`);
|
20097
20102
|
}
|
20098
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20099
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20103
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AssetsService, deps: [{ token: i1.HttpClient }, { token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20104
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AssetsService, providedIn: 'root' }); }
|
20100
20105
|
}
|
20101
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AssetsService, decorators: [{
|
20102
20107
|
type: Injectable,
|
20103
20108
|
args: [{
|
20104
20109
|
providedIn: 'root'
|
@@ -20126,10 +20131,10 @@ class BankAccountCalculationService {
|
|
20126
20131
|
getNetPosition(bankAccounts, bankTransactions, allocations) {
|
20127
20132
|
return bankAccounts.currentBalance - this.getTaxTankBalance(bankAccounts.getLoanAccounts(), bankTransactions, allocations);
|
20128
20133
|
}
|
20129
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20130
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20134
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankAccountCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20135
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' }); }
|
20131
20136
|
}
|
20132
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20137
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BankAccountCalculationService, decorators: [{
|
20133
20138
|
type: Injectable,
|
20134
20139
|
args: [{
|
20135
20140
|
providedIn: 'root'
|
@@ -20156,10 +20161,10 @@ class ExportFormatterService {
|
|
20156
20161
|
}
|
20157
20162
|
}));
|
20158
20163
|
}
|
20159
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20160
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20164
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ExportFormatterService, deps: [{ token: i1$1.CurrencyPipe }, { token: i1$1.PercentPipe }, { token: i1$1.DatePipe }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20165
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ExportFormatterService, providedIn: 'root' }); }
|
20161
20166
|
}
|
20162
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20167
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ExportFormatterService, decorators: [{
|
20163
20168
|
type: Injectable,
|
20164
20169
|
args: [{
|
20165
20170
|
providedIn: 'root'
|
@@ -20179,10 +20184,10 @@ class HeaderTitleService {
|
|
20179
20184
|
return route;
|
20180
20185
|
}), filter((route) => route.outlet === 'primary'), mergeMap((route) => route.data));
|
20181
20186
|
}
|
20182
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20183
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20187
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HeaderTitleService, deps: [{ token: i4.Router }, { token: i4.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20188
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HeaderTitleService, providedIn: 'root' }); }
|
20184
20189
|
}
|
20185
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20190
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HeaderTitleService, decorators: [{
|
20186
20191
|
type: Injectable,
|
20187
20192
|
args: [{
|
20188
20193
|
providedIn: 'root'
|
@@ -20215,10 +20220,10 @@ class IntercomService {
|
|
20215
20220
|
const connectionCredentials = this.initUser(user);
|
20216
20221
|
window.Intercom('boot', connectionCredentials);
|
20217
20222
|
}
|
20218
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20219
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20223
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20224
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IntercomService, providedIn: 'root' }); }
|
20220
20225
|
}
|
20221
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: IntercomService, decorators: [{
|
20222
20227
|
type: Injectable,
|
20223
20228
|
args: [{
|
20224
20229
|
providedIn: 'root'
|
@@ -20295,20 +20300,20 @@ class PdfFromDomElementService {
|
|
20295
20300
|
if (!document.getElementById('pdf-export-style')) {
|
20296
20301
|
const style = document.createElement('style');
|
20297
20302
|
style.id = 'pdf-export-style';
|
20298
|
-
style.textContent = `
|
20299
|
-
.pdf-export input.mat-mdc-input-element {
|
20300
|
-
height: 30px !important;
|
20301
|
-
margin-top: 20px;
|
20302
|
-
padding: 0 15px !important;
|
20303
|
-
}
|
20303
|
+
style.textContent = `
|
20304
|
+
.pdf-export input.mat-mdc-input-element {
|
20305
|
+
height: 30px !important;
|
20306
|
+
margin-top: 20px;
|
20307
|
+
padding: 0 15px !important;
|
20308
|
+
}
|
20304
20309
|
`;
|
20305
20310
|
document.head.appendChild(style);
|
20306
20311
|
}
|
20307
20312
|
}
|
20308
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20309
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20313
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20314
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' }); }
|
20310
20315
|
}
|
20311
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20316
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromDomElementService, decorators: [{
|
20312
20317
|
type: Injectable,
|
20313
20318
|
args: [{
|
20314
20319
|
providedIn: 'root'
|
@@ -20424,10 +20429,10 @@ class PdfFromTableService {
|
|
20424
20429
|
startY: lastTableCoords + FILE_SETTINGS.titleCoords.top / 2,
|
20425
20430
|
});
|
20426
20431
|
}
|
20427
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20428
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20432
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20433
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromTableService, providedIn: 'root' }); }
|
20429
20434
|
}
|
20430
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20435
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromTableService, decorators: [{
|
20431
20436
|
type: Injectable,
|
20432
20437
|
args: [{
|
20433
20438
|
providedIn: 'root'
|
@@ -20469,10 +20474,10 @@ class PdfFromDataTableService extends PdfFromTableService {
|
|
20469
20474
|
});
|
20470
20475
|
return pdf;
|
20471
20476
|
}
|
20472
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20473
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20477
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20478
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' }); }
|
20474
20479
|
}
|
20475
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20480
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromDataTableService, decorators: [{
|
20476
20481
|
type: Injectable,
|
20477
20482
|
args: [{
|
20478
20483
|
providedIn: 'root'
|
@@ -20521,10 +20526,10 @@ class PdfFromHtmlTableService extends PdfFromTableService {
|
|
20521
20526
|
Array.from(caption.children).map((node) => node.textContent).join('\n') :
|
20522
20527
|
caption.innerText;
|
20523
20528
|
}
|
20524
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20525
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20529
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
20530
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' }); }
|
20526
20531
|
}
|
20527
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20532
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
|
20528
20533
|
type: Injectable,
|
20529
20534
|
args: [{
|
20530
20535
|
providedIn: 'root'
|
@@ -20548,10 +20553,10 @@ class PreloaderService {
|
|
20548
20553
|
activePreloaders = activePreloaders.filter((preloader) => preloader !== endpoint);
|
20549
20554
|
this.activePreloaders.next(activePreloaders);
|
20550
20555
|
}
|
20551
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20552
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20556
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20557
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PreloaderService, providedIn: 'root' }); }
|
20553
20558
|
}
|
20554
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20559
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PreloaderService, decorators: [{
|
20555
20560
|
type: Injectable,
|
20556
20561
|
args: [{
|
20557
20562
|
providedIn: 'root'
|
@@ -20589,10 +20594,10 @@ class CorelogicService {
|
|
20589
20594
|
return throwError(() => error);
|
20590
20595
|
}));
|
20591
20596
|
}
|
20592
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20593
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20597
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CorelogicService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20598
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CorelogicService, providedIn: 'root' }); }
|
20594
20599
|
}
|
20595
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20600
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CorelogicService, decorators: [{
|
20596
20601
|
type: Injectable,
|
20597
20602
|
args: [{
|
20598
20603
|
providedIn: 'root'
|
@@ -20621,10 +20626,10 @@ class EquityPositionChartService {
|
|
20621
20626
|
}))
|
20622
20627
|
}))));
|
20623
20628
|
}
|
20624
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20625
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20629
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EquityPositionChartService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20630
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' }); }
|
20626
20631
|
}
|
20627
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20632
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EquityPositionChartService, decorators: [{
|
20628
20633
|
type: Injectable,
|
20629
20634
|
args: [{
|
20630
20635
|
providedIn: 'root'
|
@@ -20795,10 +20800,10 @@ class PropertyCalculationService {
|
|
20795
20800
|
return new Badge('Monitoring performance');
|
20796
20801
|
}
|
20797
20802
|
}
|
20798
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20799
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20803
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20804
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' }); }
|
20800
20805
|
}
|
20801
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20806
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyCalculationService, decorators: [{
|
20802
20807
|
type: Injectable,
|
20803
20808
|
args: [{
|
20804
20809
|
providedIn: 'root'
|
@@ -20856,10 +20861,10 @@ class PropertyTransactionReportService {
|
|
20856
20861
|
getDepreciations() {
|
20857
20862
|
return this.depreciationService.get().pipe(map((depreciations) => depreciations.getByChartAccountsCategories(CHART_ACCOUNTS_CATEGORIES.property)));
|
20858
20863
|
}
|
20859
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20860
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20864
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyTransactionReportService, deps: [{ token: PropertyService }, { token: TransactionService }, { token: DepreciationService }, { token: ChartAccountsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20865
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' }); }
|
20861
20866
|
}
|
20862
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20867
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
|
20863
20868
|
type: Injectable,
|
20864
20869
|
args: [{
|
20865
20870
|
providedIn: 'root'
|
@@ -20879,10 +20884,10 @@ class CurrentFirmBranchService {
|
|
20879
20884
|
set(firmBranches) {
|
20880
20885
|
this.firmBranchIds$.next(firmBranches.map(branch => branch.id));
|
20881
20886
|
}
|
20882
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20883
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20887
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CurrentFirmBranchService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20888
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CurrentFirmBranchService, providedIn: 'root' }); }
|
20884
20889
|
}
|
20885
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20890
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CurrentFirmBranchService, decorators: [{
|
20886
20891
|
type: Injectable,
|
20887
20892
|
args: [{
|
20888
20893
|
providedIn: 'root'
|
@@ -20980,10 +20985,10 @@ class XlsxService {
|
|
20980
20985
|
});
|
20981
20986
|
FileSaver.saveAs(data, `${fileName}.xlsx`);
|
20982
20987
|
}
|
20983
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20984
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20988
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20989
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: XlsxService, providedIn: 'root' }); }
|
20985
20990
|
}
|
20986
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20991
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: XlsxService, decorators: [{
|
20987
20992
|
type: Injectable,
|
20988
20993
|
args: [{
|
20989
20994
|
providedIn: 'root'
|
@@ -21017,10 +21022,10 @@ class CorelogicInterceptor {
|
|
21017
21022
|
}
|
21018
21023
|
});
|
21019
21024
|
}
|
21020
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21021
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21025
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CorelogicInterceptor, deps: [{ token: CorelogicService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21026
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CorelogicInterceptor }); }
|
21022
21027
|
}
|
21023
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21028
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CorelogicInterceptor, decorators: [{
|
21024
21029
|
type: Injectable
|
21025
21030
|
}], ctorParameters: () => [{ type: CorelogicService }, { type: undefined, decorators: [{
|
21026
21031
|
type: Inject,
|
@@ -21056,10 +21061,10 @@ class FinancialYearInterceptor {
|
|
21056
21061
|
}
|
21057
21062
|
return next.handle(clonedReq);
|
21058
21063
|
}
|
21059
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21060
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21064
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21065
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FinancialYearInterceptor }); }
|
21061
21066
|
}
|
21062
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21067
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
|
21063
21068
|
type: Injectable
|
21064
21069
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
21065
21070
|
type: Inject,
|
@@ -21093,10 +21098,10 @@ class UserSwitcherInterceptor {
|
|
21093
21098
|
intercept(request, next) {
|
21094
21099
|
return next.handle(this.switch(request, this.userSwitcherService.get()));
|
21095
21100
|
}
|
21096
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21097
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21101
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserSwitcherInterceptor, deps: [{ token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21102
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserSwitcherInterceptor }); }
|
21098
21103
|
}
|
21099
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21104
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
|
21100
21105
|
type: Injectable
|
21101
21106
|
}], ctorParameters: () => [{ type: UserSwitcherService }, { type: undefined, decorators: [{
|
21102
21107
|
type: Inject,
|
@@ -21439,10 +21444,10 @@ class PreloaderInterceptor {
|
|
21439
21444
|
findEndpoint(requestPath) {
|
21440
21445
|
return Object.values(ENDPOINTS).find((endpoint) => endpoint.test(requestPath));
|
21441
21446
|
}
|
21442
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21443
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21447
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21448
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PreloaderInterceptor }); }
|
21444
21449
|
}
|
21445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: PreloaderInterceptor, decorators: [{
|
21446
21451
|
type: Injectable
|
21447
21452
|
}], ctorParameters: () => [{ type: PreloaderService }] });
|
21448
21453
|
|
@@ -21467,10 +21472,10 @@ class BasiqTokenInterceptor {
|
|
21467
21472
|
}
|
21468
21473
|
});
|
21469
21474
|
}
|
21470
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21471
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21475
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqTokenInterceptor, deps: [{ token: BasiqTokenService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21476
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqTokenInterceptor }); }
|
21472
21477
|
}
|
21473
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21478
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqTokenInterceptor, decorators: [{
|
21474
21479
|
type: Injectable
|
21475
21480
|
}], ctorParameters: () => [{ type: BasiqTokenService }] });
|
21476
21481
|
|
@@ -21493,10 +21498,10 @@ class BasiqClientIdInterceptor {
|
|
21493
21498
|
url: request.url.replace('null', basiqClientId)
|
21494
21499
|
});
|
21495
21500
|
}
|
21496
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21497
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21501
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqClientIdInterceptor, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21502
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqClientIdInterceptor }); }
|
21498
21503
|
}
|
21499
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21504
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BasiqClientIdInterceptor, decorators: [{
|
21500
21505
|
type: Injectable
|
21501
21506
|
}], ctorParameters: () => [{ type: UserService }] });
|
21502
21507
|
|
@@ -21531,10 +21536,10 @@ class RewardfulInterceptor {
|
|
21531
21536
|
&& (window['Rewardful'].referral || window['Rewardful'].coupon?.id)
|
21532
21537
|
&& registrationUrls.some(registrationUrl => request.url.includes(registrationUrl));
|
21533
21538
|
}
|
21534
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21535
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21539
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RewardfulInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21540
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RewardfulInterceptor }); }
|
21536
21541
|
}
|
21537
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21542
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: RewardfulInterceptor, decorators: [{
|
21538
21543
|
type: Injectable
|
21539
21544
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
21540
21545
|
type: Inject,
|
@@ -21563,10 +21568,10 @@ class AussieInterceptor {
|
|
21563
21568
|
}
|
21564
21569
|
});
|
21565
21570
|
}
|
21566
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21567
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21571
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AussieInterceptor, deps: [{ token: AussieService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21572
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AussieInterceptor }); }
|
21568
21573
|
}
|
21569
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21574
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AussieInterceptor, decorators: [{
|
21570
21575
|
type: Injectable
|
21571
21576
|
}], ctorParameters: () => [{ type: AussieService }, { type: undefined, decorators: [{
|
21572
21577
|
type: Inject,
|
@@ -21574,13 +21579,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
21574
21579
|
}] }] });
|
21575
21580
|
|
21576
21581
|
const ADBLOCK_ERROR_HTML = new InjectionToken('ADBLOCK_ERROR_HTML');
|
21577
|
-
const ADBLOCK_ERROR_HTML_VALUE = `
|
21578
|
-
<div class="text-center">
|
21579
|
-
<strong>Action needed - Your adblocker is blocking CoreLogic</strong>
|
21580
|
-
To add a property in TaxTank we need to fetch data from CoreLogic — but your ad blocker is getting in the way.
|
21581
|
-
Please disable your adblocker or whitelist TaxTank to continue.
|
21582
|
-
<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>
|
21583
|
-
</div>
|
21582
|
+
const ADBLOCK_ERROR_HTML_VALUE = `
|
21583
|
+
<div class="text-center">
|
21584
|
+
<strong>Action needed - Your adblocker is blocking CoreLogic</strong>
|
21585
|
+
To add a property in TaxTank we need to fetch data from CoreLogic — but your ad blocker is getting in the way.
|
21586
|
+
Please disable your adblocker or whitelist TaxTank to continue.
|
21587
|
+
<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>
|
21588
|
+
</div>
|
21584
21589
|
`;
|
21585
21590
|
|
21586
21591
|
/**
|
@@ -21605,10 +21610,10 @@ class AdBlockErrorInterceptor {
|
|
21605
21610
|
}
|
21606
21611
|
return next.handle(request);
|
21607
21612
|
}
|
21608
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21609
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21613
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AdBlockErrorInterceptor, deps: [{ token: 'environment' }, { token: AdblockDetectorService }, { token: ToastService }, { token: ADBLOCK_ERROR_HTML }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21614
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AdBlockErrorInterceptor }); }
|
21610
21615
|
}
|
21611
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21616
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AdBlockErrorInterceptor, decorators: [{
|
21612
21617
|
type: Injectable
|
21613
21618
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
21614
21619
|
type: Inject,
|
@@ -21619,9 +21624,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
21619
21624
|
}] }] });
|
21620
21625
|
|
21621
21626
|
class InterceptorsModule {
|
21622
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21623
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.
|
21624
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.
|
21627
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
21628
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule }); }
|
21629
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule, providers: [
|
21625
21630
|
{
|
21626
21631
|
provide: HTTP_INTERCEPTORS,
|
21627
21632
|
useClass: CorelogicInterceptor,
|
@@ -21674,7 +21679,7 @@ class InterceptorsModule {
|
|
21674
21679
|
}
|
21675
21680
|
] }); }
|
21676
21681
|
}
|
21677
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21682
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: InterceptorsModule, decorators: [{
|
21678
21683
|
type: NgModule,
|
21679
21684
|
args: [{
|
21680
21685
|
providers: [
|
@@ -21736,13 +21741,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
21736
21741
|
* https://angular.io/guide/creating-libraries
|
21737
21742
|
*/
|
21738
21743
|
class CoreModule {
|
21739
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21740
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.
|
21744
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
21745
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.6", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
|
21741
21746
|
InterceptorsModule] }); }
|
21742
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.
|
21747
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
|
21743
21748
|
InterceptorsModule] }); }
|
21744
21749
|
}
|
21745
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21750
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: CoreModule, decorators: [{
|
21746
21751
|
type: NgModule,
|
21747
21752
|
args: [{
|
21748
21753
|
declarations: [],
|
@@ -21762,10 +21767,10 @@ class AppCurrencyPipe extends CurrencyPipe {
|
|
21762
21767
|
digitsInfo = digitsInfo ?? '1.0-' + (value.toString().match(/[1-9]/)?.index || 2);
|
21763
21768
|
return super.transform(value, currencyCode, display, digitsInfo, locale);
|
21764
21769
|
}
|
21765
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21766
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.
|
21770
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AppCurrencyPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
|
21771
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.6", ngImport: i0, type: AppCurrencyPipe, isStandalone: true, name: "appCurrency" }); }
|
21767
21772
|
}
|
21768
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21773
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AppCurrencyPipe, decorators: [{
|
21769
21774
|
type: Pipe,
|
21770
21775
|
args: [{
|
21771
21776
|
name: 'appCurrency',
|
@@ -21780,10 +21785,10 @@ class SafeUrlPipe {
|
|
21780
21785
|
transform(url) {
|
21781
21786
|
return this.sanitizer.bypassSecurityTrustResourceUrl(url);
|
21782
21787
|
}
|
21783
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21784
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.
|
21788
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SafeUrlPipe, deps: [{ token: i1$2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
21789
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.6", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
|
21785
21790
|
}
|
21786
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21791
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SafeUrlPipe, decorators: [{
|
21787
21792
|
type: Pipe,
|
21788
21793
|
args: [{
|
21789
21794
|
name: 'safeUrl',
|
@@ -21798,10 +21803,10 @@ class AppPercentPipe {
|
|
21798
21803
|
transform(value, total, floor) {
|
21799
21804
|
return this.percentagePipe.transform(value, total, floor) + '%';
|
21800
21805
|
}
|
21801
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21802
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.
|
21806
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AppPercentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
21807
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.6", ngImport: i0, type: AppPercentPipe, isStandalone: true, name: "percentage" }); }
|
21803
21808
|
}
|
21804
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21809
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: AppPercentPipe, decorators: [{
|
21805
21810
|
type: Pipe,
|
21806
21811
|
args: [{
|
21807
21812
|
name: 'percentage',
|
@@ -22175,10 +22180,10 @@ class BusinessResolver {
|
|
22175
22180
|
resolve() {
|
22176
22181
|
return this.soleDetailsService.getFirst();
|
22177
22182
|
}
|
22178
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
22179
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
22183
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BusinessResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
22184
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BusinessResolver, providedIn: 'root' }); }
|
22180
22185
|
}
|
22181
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
22186
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: BusinessResolver, decorators: [{
|
22182
22187
|
type: Injectable,
|
22183
22188
|
args: [{ providedIn: 'root' }]
|
22184
22189
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
@@ -22190,10 +22195,10 @@ class SoleDetailsResolver {
|
|
22190
22195
|
resolve() {
|
22191
22196
|
return this.soleDetails.getFirst();
|
22192
22197
|
}
|
22193
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
22194
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
22198
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDetailsResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
22199
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDetailsResolver, providedIn: 'root' }); }
|
22195
22200
|
}
|
22196
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
22201
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: SoleDetailsResolver, decorators: [{
|
22197
22202
|
type: Injectable,
|
22198
22203
|
args: [{ providedIn: 'root' }]
|
22199
22204
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
@@ -22997,10 +23002,10 @@ class UniqueEmailValidator {
|
|
22997
23002
|
validate(control) {
|
22998
23003
|
return this.userService.search(control.value).pipe(map(user => user ? { emailIsUsed: true } : null));
|
22999
23004
|
}
|
23000
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
23001
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
23005
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UniqueEmailValidator, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
23006
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UniqueEmailValidator, providedIn: 'root' }); }
|
23002
23007
|
}
|
23003
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
23008
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UniqueEmailValidator, decorators: [{
|
23004
23009
|
type: Injectable,
|
23005
23010
|
args: [{ providedIn: 'root' }]
|
23006
23011
|
}], ctorParameters: () => [{ type: UserService }] });
|
@@ -23079,10 +23084,10 @@ class ClientMovementForm extends AbstractForm {
|
|
23079
23084
|
firmBranch: new FormControl(clientMovement.firmBranch, [Validators.required]),
|
23080
23085
|
}, clientMovement);
|
23081
23086
|
}
|
23082
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
23083
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
23087
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientMovementForm, deps: [{ token: ClientMovement }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
23088
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientMovementForm, providedIn: 'root' }); }
|
23084
23089
|
}
|
23085
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
23090
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ClientMovementForm, decorators: [{
|
23086
23091
|
type: Injectable,
|
23087
23092
|
args: [{
|
23088
23093
|
providedIn: 'root'
|
@@ -23095,10 +23100,10 @@ class EmployeeDetailsForm extends AbstractForm {
|
|
23095
23100
|
firmBranches: new FormControl(employeeDetails.firmBranches, [Validators.required]),
|
23096
23101
|
}, employeeDetails);
|
23097
23102
|
}
|
23098
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
23099
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
23103
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeDetailsForm, deps: [{ token: EmployeeDetails }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
23104
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeDetailsForm, providedIn: 'root' }); }
|
23100
23105
|
}
|
23101
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
23106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: EmployeeDetailsForm, decorators: [{
|
23102
23107
|
type: Injectable,
|
23103
23108
|
args: [{
|
23104
23109
|
providedIn: 'root'
|