taxtank-core 3.0.0 → 3.0.1
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 +509 -496
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/{types/taxtank-core.d.ts → index.d.ts} +15 -2
- package/package.json +13 -14
- /package/{types/taxtank-core-common.d.ts → common/index.d.ts} +0 -0
|
@@ -64,10 +64,10 @@ class PdfService {
|
|
|
64
64
|
formData.append('landscape', landscape ? '1' : '0');
|
|
65
65
|
return this.http.post(`${this.environment.apiV2}/pdf/html`, formData, { responseType: 'blob' });
|
|
66
66
|
}
|
|
67
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
68
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
67
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
68
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfService, providedIn: 'root' }); }
|
|
69
69
|
}
|
|
70
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
70
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfService, decorators: [{
|
|
71
71
|
type: Injectable,
|
|
72
72
|
args: [{
|
|
73
73
|
providedIn: 'root'
|
|
@@ -1738,7 +1738,7 @@ class AllocationGroup extends AbstractModel {
|
|
|
1738
1738
|
description: invoice.reference,
|
|
1739
1739
|
invoiceNumber: invoice.getNumber(),
|
|
1740
1740
|
tankType: TankTypeEnum.SOLE,
|
|
1741
|
-
amount: invoice.grossPrice,
|
|
1741
|
+
amount: round(invoice.grossPrice, 2),
|
|
1742
1742
|
allocations,
|
|
1743
1743
|
bankTransactions
|
|
1744
1744
|
});
|
|
@@ -1753,7 +1753,7 @@ class AllocationGroup extends AbstractModel {
|
|
|
1753
1753
|
category: transaction.chartAccounts.name,
|
|
1754
1754
|
currency: transaction.currency,
|
|
1755
1755
|
tankType: transaction.tankType,
|
|
1756
|
-
amount: transaction.netAmount,
|
|
1756
|
+
amount: round(transaction.netAmount, 2),
|
|
1757
1757
|
childTransactions: transaction.transactions,
|
|
1758
1758
|
allocations,
|
|
1759
1759
|
bankTransactions
|
|
@@ -6134,6 +6134,9 @@ __decorate([
|
|
|
6134
6134
|
__decorate([
|
|
6135
6135
|
Type(() => Address)
|
|
6136
6136
|
], SoleBusiness.prototype, "address", void 0);
|
|
6137
|
+
__decorate([
|
|
6138
|
+
Type(() => Date)
|
|
6139
|
+
], SoleBusiness.prototype, "closeDate", void 0);
|
|
6137
6140
|
|
|
6138
6141
|
class SoleBusinessActivity extends SoleBusinessActivity$1 {
|
|
6139
6142
|
}
|
|
@@ -6733,8 +6736,11 @@ class Property extends Property$1 {
|
|
|
6733
6736
|
get corelogicNextDate() {
|
|
6734
6737
|
return this.corelogicLastRequest ? new Date(this.corelogicLastRequest.getTime() + Property.corelogicCooldown) : new Date();
|
|
6735
6738
|
}
|
|
6739
|
+
isForeign() {
|
|
6740
|
+
return !this.address.country.isAustralia();
|
|
6741
|
+
}
|
|
6736
6742
|
isCorelogicAvailable() {
|
|
6737
|
-
return this.
|
|
6743
|
+
return !this.isForeign() && (this.corelogicLastRequest < new Date(Date.now() - Property.corelogicCooldown));
|
|
6738
6744
|
}
|
|
6739
6745
|
getGrowth() {
|
|
6740
6746
|
return this.valuation.marketValue - this.purchasePrice;
|
|
@@ -7057,7 +7063,7 @@ class PropertyEquityChartData {
|
|
|
7057
7063
|
return bankAccounts.items.reduce((totalSum, bankAccount) => totalSum + (bankAccount.getPropertyPercentage(property.id) * (loans.getByBankAccountId(bankAccount.id)?.getLastPaymentByYear(year)?.totalOwed || 0)), 0) - offset;
|
|
7058
7064
|
}
|
|
7059
7065
|
if (year == this.currentYear) {
|
|
7060
|
-
return bankAccounts.items.reduce((totalSum, bankAccount) => totalSum +
|
|
7066
|
+
return Math.abs(bankAccounts.items.reduce((totalSum, bankAccount) => totalSum + bankAccount.getPropertyPercentage(property.id) * (bankAccount.convertedBalance || 0), 0));
|
|
7061
7067
|
}
|
|
7062
7068
|
return Math.abs(property.getForecastByYear(year).loanBalance) - offset;
|
|
7063
7069
|
// @TODO TT-4888 no idea why it was calculated like that
|
|
@@ -13095,10 +13101,10 @@ class EventDispatcherService {
|
|
|
13095
13101
|
dispatch2(event) {
|
|
13096
13102
|
this.eventSubject2.next(event);
|
|
13097
13103
|
}
|
|
13098
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13099
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13104
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13105
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EventDispatcherService, providedIn: 'root' }); }
|
|
13100
13106
|
}
|
|
13101
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13107
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EventDispatcherService, decorators: [{
|
|
13102
13108
|
type: Injectable,
|
|
13103
13109
|
args: [{
|
|
13104
13110
|
providedIn: 'root'
|
|
@@ -13133,10 +13139,10 @@ class SseService {
|
|
|
13133
13139
|
})
|
|
13134
13140
|
.pipe(map((messageEvent) => JSON.parse(messageEvent.data)));
|
|
13135
13141
|
}
|
|
13136
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13137
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13142
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SseService, deps: [{ token: i0.NgZone }, { token: i3.JwtService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13143
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SseService, providedIn: 'root' }); }
|
|
13138
13144
|
}
|
|
13139
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13145
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SseService, decorators: [{
|
|
13140
13146
|
type: Injectable,
|
|
13141
13147
|
args: [{
|
|
13142
13148
|
providedIn: 'root'
|
|
@@ -13224,10 +13230,10 @@ class DataService {
|
|
|
13224
13230
|
setCache(data) {
|
|
13225
13231
|
this.cache = this.createCollectionInstance(this.collectionClass, data);
|
|
13226
13232
|
}
|
|
13227
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13228
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13233
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DataService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13234
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DataService, providedIn: 'root' }); }
|
|
13229
13235
|
}
|
|
13230
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13236
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DataService, decorators: [{
|
|
13231
13237
|
type: Injectable,
|
|
13232
13238
|
args: [{
|
|
13233
13239
|
providedIn: 'root'
|
|
@@ -13295,10 +13301,10 @@ class ToastService {
|
|
|
13295
13301
|
message,
|
|
13296
13302
|
}));
|
|
13297
13303
|
}
|
|
13298
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13299
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13304
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13305
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ToastService, providedIn: 'root' }); }
|
|
13300
13306
|
}
|
|
13301
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13307
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ToastService, decorators: [{
|
|
13302
13308
|
type: Injectable,
|
|
13303
13309
|
args: [{
|
|
13304
13310
|
providedIn: 'root'
|
|
@@ -13691,10 +13697,10 @@ let RestService$1 = class RestService extends DataService {
|
|
|
13691
13697
|
this.handleResponse([change.model], change.method);
|
|
13692
13698
|
});
|
|
13693
13699
|
}
|
|
13694
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13695
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13700
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13701
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
|
13696
13702
|
};
|
|
13697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService$1, decorators: [{
|
|
13698
13704
|
type: Injectable,
|
|
13699
13705
|
args: [{
|
|
13700
13706
|
providedIn: 'root'
|
|
@@ -13837,10 +13843,10 @@ class BankAccountService extends RestService$1 {
|
|
|
13837
13843
|
}
|
|
13838
13844
|
});
|
|
13839
13845
|
}
|
|
13840
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13841
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13846
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: SseService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13847
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountService, providedIn: 'root' }); }
|
|
13842
13848
|
}
|
|
13843
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountService, decorators: [{
|
|
13844
13850
|
type: Injectable,
|
|
13845
13851
|
args: [{
|
|
13846
13852
|
providedIn: 'root'
|
|
@@ -13963,10 +13969,10 @@ class BankConnectionService extends RestService$1 {
|
|
|
13963
13969
|
}
|
|
13964
13970
|
});
|
|
13965
13971
|
}
|
|
13966
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13967
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13972
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankConnectionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13973
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankConnectionService, providedIn: 'root' }); }
|
|
13968
13974
|
}
|
|
13969
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13975
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankConnectionService, decorators: [{
|
|
13970
13976
|
type: Injectable,
|
|
13971
13977
|
args: [{
|
|
13972
13978
|
providedIn: 'root'
|
|
@@ -14012,10 +14018,10 @@ class BankTransactionService extends RestService$1 {
|
|
|
14012
14018
|
}
|
|
14013
14019
|
});
|
|
14014
14020
|
}
|
|
14015
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14016
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14021
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14022
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionService, providedIn: 'root' }); }
|
|
14017
14023
|
}
|
|
14018
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14024
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionService, decorators: [{
|
|
14019
14025
|
type: Injectable,
|
|
14020
14026
|
args: [{
|
|
14021
14027
|
providedIn: 'root'
|
|
@@ -14044,10 +14050,10 @@ class BankTransactionImportService extends RestService$1 {
|
|
|
14044
14050
|
formData.append('file', file);
|
|
14045
14051
|
return this.importFile(formData, `${this.environment.apiV2}/bank-accounts/${bankAccountId}/bank-transaction-imports`);
|
|
14046
14052
|
}
|
|
14047
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14048
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14053
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionImportService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14054
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionImportService, providedIn: 'root' }); }
|
|
14049
14055
|
}
|
|
14050
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14056
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionImportService, decorators: [{
|
|
14051
14057
|
type: Injectable,
|
|
14052
14058
|
args: [{
|
|
14053
14059
|
providedIn: 'root'
|
|
@@ -14092,10 +14098,10 @@ class BasiqTokenService extends RestService$1 {
|
|
|
14092
14098
|
const now = new Date().getTime();
|
|
14093
14099
|
return new BasiqToken(tokenResponse['access_token'], new Date(now + tokenResponse['expires_in'] * 1000));
|
|
14094
14100
|
}
|
|
14095
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14096
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14101
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14102
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenService, providedIn: 'root' }); }
|
|
14097
14103
|
}
|
|
14098
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14104
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenService, decorators: [{
|
|
14099
14105
|
type: Injectable,
|
|
14100
14106
|
args: [{
|
|
14101
14107
|
providedIn: 'root'
|
|
@@ -14137,10 +14143,10 @@ class BasiqService extends RestService$1 {
|
|
|
14137
14143
|
}
|
|
14138
14144
|
});
|
|
14139
14145
|
}
|
|
14140
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14141
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14146
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14147
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, providedIn: 'root' }); }
|
|
14142
14148
|
}
|
|
14143
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14149
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, decorators: [{
|
|
14144
14150
|
type: Injectable,
|
|
14145
14151
|
args: [{
|
|
14146
14152
|
providedIn: 'root'
|
|
@@ -14203,10 +14209,10 @@ class MixpanelService {
|
|
|
14203
14209
|
}
|
|
14204
14210
|
mixpanel['track_pageview']();
|
|
14205
14211
|
}
|
|
14206
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14207
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14212
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MixpanelService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14213
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MixpanelService, providedIn: 'root' }); }
|
|
14208
14214
|
}
|
|
14209
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14215
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MixpanelService, decorators: [{
|
|
14210
14216
|
type: Injectable,
|
|
14211
14217
|
args: [{
|
|
14212
14218
|
providedIn: 'root'
|
|
@@ -14273,10 +14279,10 @@ class JwtService extends JwtHelperService {
|
|
|
14273
14279
|
isMe(userId) {
|
|
14274
14280
|
return this.decode().id === userId;
|
|
14275
14281
|
}
|
|
14276
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14277
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14282
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14283
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtService, providedIn: 'root' }); }
|
|
14278
14284
|
}
|
|
14279
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14285
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtService, decorators: [{
|
|
14280
14286
|
type: Injectable,
|
|
14281
14287
|
args: [{
|
|
14282
14288
|
providedIn: 'root'
|
|
@@ -14317,10 +14323,10 @@ class AuthService {
|
|
|
14317
14323
|
this.jwtService.destroyTokens();
|
|
14318
14324
|
location.replace(url);
|
|
14319
14325
|
}
|
|
14320
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14321
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14326
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AuthService, deps: [{ token: i1.HttpClient }, { token: JwtService }, { token: MixpanelService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14327
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AuthService, providedIn: 'root' }); }
|
|
14322
14328
|
}
|
|
14323
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14329
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AuthService, decorators: [{
|
|
14324
14330
|
type: Injectable,
|
|
14325
14331
|
args: [{
|
|
14326
14332
|
providedIn: 'root'
|
|
@@ -14457,10 +14463,10 @@ class JwtInterceptor {
|
|
|
14457
14463
|
// });
|
|
14458
14464
|
});
|
|
14459
14465
|
}
|
|
14460
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14461
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14466
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtInterceptor, deps: [{ token: JwtService }, { token: AuthService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14467
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtInterceptor }); }
|
|
14462
14468
|
}
|
|
14463
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14469
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtInterceptor, decorators: [{
|
|
14464
14470
|
type: Injectable
|
|
14465
14471
|
}], ctorParameters: () => [{ type: JwtService }, { type: AuthService }, { type: undefined, decorators: [{
|
|
14466
14472
|
type: Inject,
|
|
@@ -14468,9 +14474,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImpor
|
|
|
14468
14474
|
}] }] });
|
|
14469
14475
|
|
|
14470
14476
|
let InterceptorsModule$1 = class InterceptorsModule {
|
|
14471
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14472
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
14473
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
14477
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
14478
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule }); }
|
|
14479
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, providers: [
|
|
14474
14480
|
{
|
|
14475
14481
|
provide: HTTP_INTERCEPTORS,
|
|
14476
14482
|
useClass: JwtInterceptor,
|
|
@@ -14478,7 +14484,7 @@ let InterceptorsModule$1 = class InterceptorsModule {
|
|
|
14478
14484
|
}
|
|
14479
14485
|
] }); }
|
|
14480
14486
|
};
|
|
14481
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14487
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule$1, decorators: [{
|
|
14482
14488
|
type: NgModule,
|
|
14483
14489
|
args: [{
|
|
14484
14490
|
providers: [
|
|
@@ -14508,13 +14514,13 @@ class CommonModule {
|
|
|
14508
14514
|
]
|
|
14509
14515
|
};
|
|
14510
14516
|
}
|
|
14511
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14512
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
14517
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
14518
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
|
|
14513
14519
|
InterceptorsModule$1] }); }
|
|
14514
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
14520
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
|
|
14515
14521
|
InterceptorsModule$1] }); }
|
|
14516
14522
|
}
|
|
14517
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14523
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, decorators: [{
|
|
14518
14524
|
type: NgModule,
|
|
14519
14525
|
args: [{
|
|
14520
14526
|
declarations: [],
|
|
@@ -14589,10 +14595,10 @@ class BasiqUserService extends RestService$1 {
|
|
|
14589
14595
|
window.location.replace(url);
|
|
14590
14596
|
}));
|
|
14591
14597
|
}
|
|
14592
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14593
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14598
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqUserService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14599
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqUserService, providedIn: 'root' }); }
|
|
14594
14600
|
}
|
|
14595
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14601
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqUserService, decorators: [{
|
|
14596
14602
|
type: Injectable,
|
|
14597
14603
|
args: [{
|
|
14598
14604
|
providedIn: 'root'
|
|
@@ -14610,10 +14616,10 @@ class BankTransactionCommentService extends RestService$1 {
|
|
|
14610
14616
|
this.endpointUri = 'bank-transaction-comments';
|
|
14611
14617
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
14612
14618
|
}
|
|
14613
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14614
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14619
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionCommentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14620
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionCommentService, providedIn: 'root' }); }
|
|
14615
14621
|
}
|
|
14616
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14622
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionCommentService, decorators: [{
|
|
14617
14623
|
type: Injectable,
|
|
14618
14624
|
args: [{
|
|
14619
14625
|
providedIn: 'root'
|
|
@@ -14639,10 +14645,10 @@ class BankService extends RestService$1 {
|
|
|
14639
14645
|
this.endpointUri = 'banks';
|
|
14640
14646
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
14641
14647
|
}
|
|
14642
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14643
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14648
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14649
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankService, providedIn: 'root' }); }
|
|
14644
14650
|
}
|
|
14645
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14651
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankService, decorators: [{
|
|
14646
14652
|
type: Injectable,
|
|
14647
14653
|
args: [{
|
|
14648
14654
|
providedIn: 'root'
|
|
@@ -14668,10 +14674,10 @@ class ExchangeRateService extends RestService$1 {
|
|
|
14668
14674
|
this.collectionClass = Collection;
|
|
14669
14675
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
14670
14676
|
}
|
|
14671
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14672
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14677
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExchangeRateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14678
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExchangeRateService, providedIn: 'root' }); }
|
|
14673
14679
|
}
|
|
14674
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14680
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExchangeRateService, decorators: [{
|
|
14675
14681
|
type: Injectable,
|
|
14676
14682
|
args: [{
|
|
14677
14683
|
providedIn: 'root'
|
|
@@ -14687,10 +14693,10 @@ class BudgetService extends RestService$1 {
|
|
|
14687
14693
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
14688
14694
|
this.roles = [UserRolesEnum.MONEY_TANK];
|
|
14689
14695
|
}
|
|
14690
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14691
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14696
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14697
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetService, providedIn: 'root' }); }
|
|
14692
14698
|
}
|
|
14693
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14699
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetService, decorators: [{
|
|
14694
14700
|
type: Injectable,
|
|
14695
14701
|
args: [{
|
|
14696
14702
|
providedIn: 'root'
|
|
@@ -14714,10 +14720,10 @@ class BudgetRuleService extends RestService$1 {
|
|
|
14714
14720
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
14715
14721
|
this.roles = [UserRolesEnum.MONEY_TANK];
|
|
14716
14722
|
}
|
|
14717
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14718
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14723
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14724
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetRuleService, providedIn: 'root' }); }
|
|
14719
14725
|
}
|
|
14720
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14726
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetRuleService, decorators: [{
|
|
14721
14727
|
type: Injectable,
|
|
14722
14728
|
args: [{
|
|
14723
14729
|
providedIn: 'root'
|
|
@@ -14743,10 +14749,10 @@ class FinancialGoalService extends RestService$1 {
|
|
|
14743
14749
|
complete(goal) {
|
|
14744
14750
|
return this.put(Object.assign({}, goal, { status: FinancialGoalStatusEnum.COMPLETE, finalValue: goal.bankAccount.convertedBalance }));
|
|
14745
14751
|
}
|
|
14746
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14747
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14752
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialGoalService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14753
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialGoalService, providedIn: 'root' }); }
|
|
14748
14754
|
}
|
|
14749
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14755
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialGoalService, decorators: [{
|
|
14750
14756
|
type: Injectable,
|
|
14751
14757
|
args: [{
|
|
14752
14758
|
providedIn: 'root'
|
|
@@ -14777,10 +14783,10 @@ class CalendarReminderService extends RestService$1 {
|
|
|
14777
14783
|
this.listenCSE(SoleBusiness, this.refreshCache, ['put']);
|
|
14778
14784
|
this.listenCSE(IncomeSource, this.refreshCache, ['put']);
|
|
14779
14785
|
}
|
|
14780
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14781
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14786
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CalendarReminderService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14787
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CalendarReminderService, providedIn: 'root' }); }
|
|
14782
14788
|
}
|
|
14783
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14789
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CalendarReminderService, decorators: [{
|
|
14784
14790
|
type: Injectable,
|
|
14785
14791
|
args: [{
|
|
14786
14792
|
providedIn: 'root',
|
|
@@ -14809,10 +14815,10 @@ class ChartAccountsDepreciationService extends RestService$1 {
|
|
|
14809
14815
|
this.collectionClass = Collection;
|
|
14810
14816
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
14811
14817
|
}
|
|
14812
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14813
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14818
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14819
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' }); }
|
|
14814
14820
|
}
|
|
14815
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14821
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
|
|
14816
14822
|
type: Injectable,
|
|
14817
14823
|
args: [{
|
|
14818
14824
|
providedIn: 'root'
|
|
@@ -14851,10 +14857,10 @@ class ChartAccountsService extends RestService$1 {
|
|
|
14851
14857
|
return headings;
|
|
14852
14858
|
}));
|
|
14853
14859
|
}
|
|
14854
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14855
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14860
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14861
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsService, providedIn: 'root' }); }
|
|
14856
14862
|
}
|
|
14857
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14863
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsService, decorators: [{
|
|
14858
14864
|
type: Injectable,
|
|
14859
14865
|
args: [{
|
|
14860
14866
|
providedIn: 'root'
|
|
@@ -14938,10 +14944,10 @@ class ChatService extends RestService$1 {
|
|
|
14938
14944
|
this.setCache(cache, true);
|
|
14939
14945
|
}, ['post']);
|
|
14940
14946
|
}
|
|
14941
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14942
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14947
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChatService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14948
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChatService, providedIn: 'root' }); }
|
|
14943
14949
|
}
|
|
14944
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14950
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChatService, decorators: [{
|
|
14945
14951
|
type: Injectable,
|
|
14946
14952
|
args: [{
|
|
14947
14953
|
providedIn: 'root'
|
|
@@ -14971,10 +14977,10 @@ class MessageService extends RestService$1 {
|
|
|
14971
14977
|
getUnreadChatsAmount() {
|
|
14972
14978
|
return this.get().pipe(map((messages) => messages.getUnreadChatsAmount()));
|
|
14973
14979
|
}
|
|
14974
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14975
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14980
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14981
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageService, providedIn: 'root' }); }
|
|
14976
14982
|
}
|
|
14977
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14983
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageService, decorators: [{
|
|
14978
14984
|
type: Injectable,
|
|
14979
14985
|
args: [{
|
|
14980
14986
|
providedIn: 'root'
|
|
@@ -15043,10 +15049,10 @@ class MessageDocumentService extends RestService$1 {
|
|
|
15043
15049
|
addBatch(chatId, files) {
|
|
15044
15050
|
return combineLatest(files.map((file) => this.add(chatId, file))).pipe(map((docsBase) => docsBase.map((docBase) => plainToClass(MessageDocument, docBase))));
|
|
15045
15051
|
}
|
|
15046
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15047
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15052
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageDocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15053
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageDocumentService, providedIn: 'root' }); }
|
|
15048
15054
|
}
|
|
15049
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15055
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageDocumentService, decorators: [{
|
|
15050
15056
|
type: Injectable,
|
|
15051
15057
|
args: [{
|
|
15052
15058
|
providedIn: 'root'
|
|
@@ -15067,10 +15073,10 @@ class DashboardSettingsService extends RestService$1 {
|
|
|
15067
15073
|
this.endpointUri = 'dashboard-settings';
|
|
15068
15074
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
|
|
15069
15075
|
}
|
|
15070
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15071
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15076
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DashboardSettingsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15077
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DashboardSettingsService, providedIn: 'root' }); }
|
|
15072
15078
|
}
|
|
15073
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15079
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DashboardSettingsService, decorators: [{
|
|
15074
15080
|
type: Injectable,
|
|
15075
15081
|
args: [{
|
|
15076
15082
|
providedIn: 'root'
|
|
@@ -15160,10 +15166,10 @@ class DepreciationService extends RestService$1 {
|
|
|
15160
15166
|
this.refreshCache();
|
|
15161
15167
|
});
|
|
15162
15168
|
}
|
|
15163
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15164
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15169
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15170
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationService, providedIn: 'root' }); }
|
|
15165
15171
|
}
|
|
15166
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15172
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationService, decorators: [{
|
|
15167
15173
|
type: Injectable,
|
|
15168
15174
|
args: [{
|
|
15169
15175
|
providedIn: 'root'
|
|
@@ -15185,10 +15191,10 @@ class DepreciationCapitalProjectService extends RestService$1 {
|
|
|
15185
15191
|
this.endpointUri = 'depreciation-capital-projects';
|
|
15186
15192
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
15187
15193
|
}
|
|
15188
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15189
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15194
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationCapitalProjectService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15195
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' }); }
|
|
15190
15196
|
}
|
|
15191
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15197
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
|
|
15192
15198
|
type: Injectable,
|
|
15193
15199
|
args: [{
|
|
15194
15200
|
providedIn: 'root'
|
|
@@ -15211,10 +15217,10 @@ class PriorDepreciationService extends RestService$1 {
|
|
|
15211
15217
|
const financialYear = new FinancialYear(new FinancialYear().year - 1);
|
|
15212
15218
|
return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(depreciations => depreciations.filterByFinancialYear('date', null, financialYear)));
|
|
15213
15219
|
}
|
|
15214
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15215
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15220
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15221
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorDepreciationService, providedIn: 'root' }); }
|
|
15216
15222
|
}
|
|
15217
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15223
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorDepreciationService, decorators: [{
|
|
15218
15224
|
type: Injectable,
|
|
15219
15225
|
args: [{
|
|
15220
15226
|
providedIn: 'root'
|
|
@@ -15240,10 +15246,10 @@ class DocumentFolderService extends RestService$1 {
|
|
|
15240
15246
|
this.modelClass = DocumentFolder;
|
|
15241
15247
|
this.disabledMethods = ['deleteBatch', 'postBatch', 'putBatch'];
|
|
15242
15248
|
}
|
|
15243
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15244
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15249
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15250
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentFolderService, providedIn: 'root' }); }
|
|
15245
15251
|
}
|
|
15246
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15252
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentFolderService, decorators: [{
|
|
15247
15253
|
type: Injectable,
|
|
15248
15254
|
args: [{
|
|
15249
15255
|
providedIn: 'root'
|
|
@@ -15268,10 +15274,10 @@ class DocumentService extends RestService$1 {
|
|
|
15268
15274
|
postFiles(folder, files) {
|
|
15269
15275
|
return this.postParallel(files.map(file => plainToClass(Document, { folder, file })));
|
|
15270
15276
|
}
|
|
15271
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15272
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15277
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15278
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentService, providedIn: 'root' }); }
|
|
15273
15279
|
}
|
|
15274
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentService, decorators: [{
|
|
15275
15281
|
type: Injectable,
|
|
15276
15282
|
args: [{
|
|
15277
15283
|
providedIn: 'root'
|
|
@@ -15356,10 +15362,10 @@ class FacebookService {
|
|
|
15356
15362
|
});
|
|
15357
15363
|
});
|
|
15358
15364
|
}
|
|
15359
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15360
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15365
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FacebookService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15366
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FacebookService, providedIn: 'root' }); }
|
|
15361
15367
|
}
|
|
15362
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15368
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FacebookService, decorators: [{
|
|
15363
15369
|
type: Injectable,
|
|
15364
15370
|
args: [{
|
|
15365
15371
|
providedIn: 'root'
|
|
@@ -15426,10 +15432,10 @@ class GoogleService {
|
|
|
15426
15432
|
logout() {
|
|
15427
15433
|
google.accounts.id.disableAutoSelect();
|
|
15428
15434
|
}
|
|
15429
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15430
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15435
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GoogleService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15436
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GoogleService, providedIn: 'root' }); }
|
|
15431
15437
|
}
|
|
15432
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15438
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GoogleService, decorators: [{
|
|
15433
15439
|
type: Injectable,
|
|
15434
15440
|
args: [{
|
|
15435
15441
|
providedIn: 'root'
|
|
@@ -15461,10 +15467,10 @@ class FileService extends RestService$1 {
|
|
|
15461
15467
|
download(file) {
|
|
15462
15468
|
return this.http.get(`${this.apiUrl}/${file.id}/download`, { responseType: 'blob' });
|
|
15463
15469
|
}
|
|
15464
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15465
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15470
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15471
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FileService, providedIn: 'root' }); }
|
|
15466
15472
|
}
|
|
15467
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15473
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FileService, decorators: [{
|
|
15468
15474
|
type: Injectable,
|
|
15469
15475
|
args: [{
|
|
15470
15476
|
providedIn: 'root'
|
|
@@ -15554,10 +15560,10 @@ class ClientInviteService extends RestService$1 {
|
|
|
15554
15560
|
}
|
|
15555
15561
|
});
|
|
15556
15562
|
}
|
|
15557
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15558
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15563
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientInviteService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15564
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientInviteService, providedIn: 'root' }); }
|
|
15559
15565
|
}
|
|
15560
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15566
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientInviteService, decorators: [{
|
|
15561
15567
|
type: Injectable,
|
|
15562
15568
|
args: [{
|
|
15563
15569
|
providedIn: 'root'
|
|
@@ -15647,10 +15653,10 @@ class ClientMovementService extends RestService$1 {
|
|
|
15647
15653
|
// this.updateCache([clientMovement], 'delete');
|
|
15648
15654
|
}));
|
|
15649
15655
|
}
|
|
15650
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15651
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15656
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15657
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementService, providedIn: 'root' }); }
|
|
15652
15658
|
}
|
|
15653
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15659
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementService, decorators: [{
|
|
15654
15660
|
type: Injectable,
|
|
15655
15661
|
args: [{
|
|
15656
15662
|
providedIn: 'root'
|
|
@@ -15711,10 +15717,10 @@ class EmployeeService extends RestService$1 {
|
|
|
15711
15717
|
index === -1 ? employee.roles.push(role) : employee.roles.splice(index, 1);
|
|
15712
15718
|
return super.put(employee, `${this.environment.apiV2}/${this.endpointUri}/${employee.id}`);
|
|
15713
15719
|
}
|
|
15714
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15715
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15720
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15721
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeService, providedIn: 'root' }); }
|
|
15716
15722
|
}
|
|
15717
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15723
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeService, decorators: [{
|
|
15718
15724
|
type: Injectable,
|
|
15719
15725
|
args: [{
|
|
15720
15726
|
providedIn: 'root'
|
|
@@ -15775,10 +15781,10 @@ class EmployeeInviteService extends RestService$1 {
|
|
|
15775
15781
|
return updatedInvite;
|
|
15776
15782
|
}));
|
|
15777
15783
|
}
|
|
15778
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15779
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15784
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15785
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' }); }
|
|
15780
15786
|
}
|
|
15781
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15787
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeInviteService, decorators: [{
|
|
15782
15788
|
type: Injectable,
|
|
15783
15789
|
args: [{
|
|
15784
15790
|
providedIn: 'root'
|
|
@@ -15802,10 +15808,10 @@ class ClientPortfolioReportService {
|
|
|
15802
15808
|
return new ClientPortfolioReportCollection(clientReports);
|
|
15803
15809
|
}));
|
|
15804
15810
|
}
|
|
15805
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15806
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15811
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientPortfolioReportService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15812
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' }); }
|
|
15807
15813
|
}
|
|
15808
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15814
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
|
|
15809
15815
|
type: Injectable,
|
|
15810
15816
|
args: [{
|
|
15811
15817
|
providedIn: 'root'
|
|
@@ -15849,10 +15855,10 @@ class FirmService {
|
|
|
15849
15855
|
this.firmSubject.next(updatedInstance);
|
|
15850
15856
|
}));
|
|
15851
15857
|
}
|
|
15852
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15853
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15858
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15859
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmService, providedIn: 'root' }); }
|
|
15854
15860
|
}
|
|
15855
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15861
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmService, decorators: [{
|
|
15856
15862
|
type: Injectable,
|
|
15857
15863
|
args: [{
|
|
15858
15864
|
providedIn: 'root'
|
|
@@ -15870,10 +15876,10 @@ class FirmBranchService extends RestService$1 {
|
|
|
15870
15876
|
this.collectionClass = (Collection);
|
|
15871
15877
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
15872
15878
|
}
|
|
15873
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15874
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15879
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmBranchService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15880
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmBranchService, providedIn: 'root' }); }
|
|
15875
15881
|
}
|
|
15876
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmBranchService, decorators: [{
|
|
15877
15883
|
type: Injectable,
|
|
15878
15884
|
args: [{
|
|
15879
15885
|
providedIn: 'root'
|
|
@@ -16114,10 +16120,10 @@ class RestService {
|
|
|
16114
16120
|
getCache() {
|
|
16115
16121
|
return clone(this.cache);
|
|
16116
16122
|
}
|
|
16117
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16118
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16123
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16124
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
|
16119
16125
|
}
|
|
16120
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16126
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, decorators: [{
|
|
16121
16127
|
type: Injectable,
|
|
16122
16128
|
args: [{
|
|
16123
16129
|
providedIn: 'root'
|
|
@@ -16192,10 +16198,10 @@ class IncomeSourceForecastService extends RestService {
|
|
|
16192
16198
|
return incomeSource.incomeSourceForecasts;
|
|
16193
16199
|
}).flat();
|
|
16194
16200
|
}
|
|
16195
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16196
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16201
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16202
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' }); }
|
|
16197
16203
|
}
|
|
16198
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16204
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
|
|
16199
16205
|
type: Injectable,
|
|
16200
16206
|
args: [{
|
|
16201
16207
|
providedIn: 'root'
|
|
@@ -16269,10 +16275,10 @@ class SalaryForecastService extends RestService {
|
|
|
16269
16275
|
return incomeSource.salaryForecasts;
|
|
16270
16276
|
}).flat();
|
|
16271
16277
|
}
|
|
16272
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16273
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16278
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SalaryForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16279
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SalaryForecastService, providedIn: 'root' }); }
|
|
16274
16280
|
}
|
|
16275
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16281
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SalaryForecastService, decorators: [{
|
|
16276
16282
|
type: Injectable,
|
|
16277
16283
|
args: [{
|
|
16278
16284
|
providedIn: 'root'
|
|
@@ -16354,10 +16360,10 @@ class SoleForecastService extends RestService {
|
|
|
16354
16360
|
this.refreshCache();
|
|
16355
16361
|
});
|
|
16356
16362
|
}
|
|
16357
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16358
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16363
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16364
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleForecastService, providedIn: 'root' }); }
|
|
16359
16365
|
}
|
|
16360
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16366
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleForecastService, decorators: [{
|
|
16361
16367
|
type: Injectable,
|
|
16362
16368
|
args: [{
|
|
16363
16369
|
providedIn: 'root'
|
|
@@ -16440,10 +16446,10 @@ class IncomeSourceService extends RestService {
|
|
|
16440
16446
|
this.refreshCache();
|
|
16441
16447
|
});
|
|
16442
16448
|
}
|
|
16443
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16444
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16449
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16450
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceService, providedIn: 'root' }); }
|
|
16445
16451
|
}
|
|
16446
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16452
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceService, decorators: [{
|
|
16447
16453
|
type: Injectable,
|
|
16448
16454
|
args: [{
|
|
16449
16455
|
providedIn: 'root'
|
|
@@ -16516,10 +16522,10 @@ class BorrowingExpenseService {
|
|
|
16516
16522
|
return combinedBorrowingExpenses;
|
|
16517
16523
|
}));
|
|
16518
16524
|
}
|
|
16519
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16520
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16525
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingExpenseService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16526
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' }); }
|
|
16521
16527
|
}
|
|
16522
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingExpenseService, decorators: [{
|
|
16523
16529
|
type: Injectable,
|
|
16524
16530
|
args: [{
|
|
16525
16531
|
providedIn: 'root'
|
|
@@ -16603,10 +16609,10 @@ class LoanService extends RestService$1 {
|
|
|
16603
16609
|
delete(loan) {
|
|
16604
16610
|
return super.delete(loan, `${this.environment.apiV2}/loans/${loan.id}`);
|
|
16605
16611
|
}
|
|
16606
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16607
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16612
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: LoanService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16613
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: LoanService, providedIn: 'root' }); }
|
|
16608
16614
|
}
|
|
16609
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16615
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: LoanService, decorators: [{
|
|
16610
16616
|
type: Injectable,
|
|
16611
16617
|
args: [{
|
|
16612
16618
|
providedIn: 'root'
|
|
@@ -16632,10 +16638,10 @@ class BorrowingReportService extends RestService$1 {
|
|
|
16632
16638
|
this.collectionClass = Collection;
|
|
16633
16639
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
16634
16640
|
}
|
|
16635
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16636
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16641
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16642
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingReportService, providedIn: 'root' }); }
|
|
16637
16643
|
}
|
|
16638
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16644
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingReportService, decorators: [{
|
|
16639
16645
|
type: Injectable,
|
|
16640
16646
|
args: [{
|
|
16641
16647
|
providedIn: 'root'
|
|
@@ -16660,10 +16666,10 @@ class PropertyCategoryService extends RestService$1 {
|
|
|
16660
16666
|
this.endpointUri = 'properties/categories';
|
|
16661
16667
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
16662
16668
|
}
|
|
16663
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16664
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16669
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16670
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' }); }
|
|
16665
16671
|
}
|
|
16666
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16672
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryService, decorators: [{
|
|
16667
16673
|
type: Injectable,
|
|
16668
16674
|
args: [{
|
|
16669
16675
|
providedIn: 'root'
|
|
@@ -16685,10 +16691,10 @@ class PropertyCategoryMovementService extends RestService$1 {
|
|
|
16685
16691
|
this.listenCSE(Property, this.refreshCache, ['post']);
|
|
16686
16692
|
this.listenCSE(PropertyValuation, this.refreshCache);
|
|
16687
16693
|
}
|
|
16688
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16689
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16694
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16695
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' }); }
|
|
16690
16696
|
}
|
|
16691
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
|
|
16692
16698
|
type: Injectable,
|
|
16693
16699
|
args: [{
|
|
16694
16700
|
providedIn: 'root'
|
|
@@ -16769,10 +16775,10 @@ class TaxExemptionService extends DataService {
|
|
|
16769
16775
|
this.collectionClass = TaxExemptionCollection;
|
|
16770
16776
|
this.setCache(TaxExemptions);
|
|
16771
16777
|
}
|
|
16772
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16773
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16778
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxExemptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16779
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxExemptionService, providedIn: 'root' }); }
|
|
16774
16780
|
}
|
|
16775
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16781
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxExemptionService, decorators: [{
|
|
16776
16782
|
type: Injectable,
|
|
16777
16783
|
args: [{
|
|
16778
16784
|
providedIn: 'root'
|
|
@@ -16788,10 +16794,10 @@ class PropertySaleService extends RestService$1 {
|
|
|
16788
16794
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
16789
16795
|
this.roles = [UserRolesEnum$1.PROPERTY_TANK];
|
|
16790
16796
|
}
|
|
16791
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16792
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16797
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16798
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertySaleService, providedIn: 'root' }); }
|
|
16793
16799
|
}
|
|
16794
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertySaleService, decorators: [{
|
|
16795
16801
|
type: Injectable,
|
|
16796
16802
|
args: [{
|
|
16797
16803
|
providedIn: 'root'
|
|
@@ -16845,10 +16851,10 @@ class PropertyShareService extends RestService$1 {
|
|
|
16845
16851
|
listenSalesChanges() {
|
|
16846
16852
|
this.listenCSE(PropertySale, this.refreshCache, ['post', 'delete']);
|
|
16847
16853
|
}
|
|
16848
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16849
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16854
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyShareService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16855
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyShareService, providedIn: 'root' }); }
|
|
16850
16856
|
}
|
|
16851
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyShareService, decorators: [{
|
|
16852
16858
|
type: Injectable,
|
|
16853
16859
|
args: [{
|
|
16854
16860
|
providedIn: 'root'
|
|
@@ -16867,10 +16873,10 @@ class PropertyValuationService extends RestService$1 {
|
|
|
16867
16873
|
this.disabledMethods = ['postBatch', 'putBatch'];
|
|
16868
16874
|
this.useBackendError = true;
|
|
16869
16875
|
}
|
|
16870
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16871
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16876
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyValuationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16877
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyValuationService, providedIn: 'root' }); }
|
|
16872
16878
|
}
|
|
16873
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16879
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyValuationService, decorators: [{
|
|
16874
16880
|
type: Injectable,
|
|
16875
16881
|
args: [{
|
|
16876
16882
|
providedIn: 'root'
|
|
@@ -17014,10 +17020,10 @@ class PropertyService extends RestService$1 {
|
|
|
17014
17020
|
return of({ growthPercent: 0, lowMarketValue: 0, marketValue: 0, highMarketValue: 0, confidence: PropertyCorelogicStatsConfidenceTypeEnum.LOW });
|
|
17015
17021
|
}));
|
|
17016
17022
|
}
|
|
17017
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17018
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17023
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17024
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
|
|
17019
17025
|
}
|
|
17020
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17026
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyService, decorators: [{
|
|
17021
17027
|
type: Injectable,
|
|
17022
17028
|
args: [{
|
|
17023
17029
|
providedIn: 'root'
|
|
@@ -17074,10 +17080,10 @@ class ServiceNotificationService extends RestService {
|
|
|
17074
17080
|
this.eventDispatcherService.dispatch(new AppEvent(AppEventTypeEnum.NOTIFICATION_ADDED, notification));
|
|
17075
17081
|
});
|
|
17076
17082
|
}
|
|
17077
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17078
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17083
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceNotificationService, deps: [{ token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17084
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' }); }
|
|
17079
17085
|
}
|
|
17080
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17086
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceNotificationService, decorators: [{
|
|
17081
17087
|
type: Injectable,
|
|
17082
17088
|
args: [{
|
|
17083
17089
|
providedIn: 'root'
|
|
@@ -17091,6 +17097,10 @@ var SoleBusinessMessagesEnum;
|
|
|
17091
17097
|
(function (SoleBusinessMessagesEnum) {
|
|
17092
17098
|
SoleBusinessMessagesEnum["LOGO_UPDATED"] = "Logo updated successfully";
|
|
17093
17099
|
SoleBusinessMessagesEnum["DELETED"] = "Business deleted";
|
|
17100
|
+
SoleBusinessMessagesEnum["CLOSED"] = "Business closed";
|
|
17101
|
+
SoleBusinessMessagesEnum["REOPENED"] = "Business reopened";
|
|
17102
|
+
SoleBusinessMessagesEnum["UPDATED"] = "Business updated";
|
|
17103
|
+
SoleBusinessMessagesEnum["CREATED"] = "Business created";
|
|
17094
17104
|
})(SoleBusinessMessagesEnum || (SoleBusinessMessagesEnum = {}));
|
|
17095
17105
|
|
|
17096
17106
|
class SoleBusinessService extends RestService$1 {
|
|
@@ -17102,10 +17112,10 @@ class SoleBusinessService extends RestService$1 {
|
|
|
17102
17112
|
this.roles = [UserRolesEnum$1.SOLE_TANK];
|
|
17103
17113
|
this.useBackendError = true;
|
|
17104
17114
|
}
|
|
17105
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17106
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17115
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17116
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessService, providedIn: 'root' }); }
|
|
17107
17117
|
}
|
|
17108
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17118
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessService, decorators: [{
|
|
17109
17119
|
type: Injectable,
|
|
17110
17120
|
args: [{
|
|
17111
17121
|
providedIn: 'root'
|
|
@@ -17118,10 +17128,10 @@ class SoleBusinessActivityService extends RestService {
|
|
|
17118
17128
|
this.modelClass = SoleBusinessActivity;
|
|
17119
17129
|
this.url = 'sole-business-activities';
|
|
17120
17130
|
}
|
|
17121
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17122
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17131
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17132
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' }); }
|
|
17123
17133
|
}
|
|
17124
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
|
|
17125
17135
|
type: Injectable,
|
|
17126
17136
|
args: [{
|
|
17127
17137
|
providedIn: 'root'
|
|
@@ -17150,10 +17160,10 @@ class SoleBusinessLossService extends RestService$1 {
|
|
|
17150
17160
|
this.refreshCache();
|
|
17151
17161
|
});
|
|
17152
17162
|
}
|
|
17153
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17154
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17163
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17164
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' }); }
|
|
17155
17165
|
}
|
|
17156
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17166
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossService, decorators: [{
|
|
17157
17167
|
type: Injectable,
|
|
17158
17168
|
args: [{
|
|
17159
17169
|
providedIn: 'root'
|
|
@@ -17172,10 +17182,10 @@ class SoleBusinessLossOffsetRuleService extends RestService {
|
|
|
17172
17182
|
this.modelClass = SoleBusinessLossOffsetRule;
|
|
17173
17183
|
this.url = 'sole-business-loss-offset-rules';
|
|
17174
17184
|
}
|
|
17175
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17176
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17185
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17186
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' }); }
|
|
17177
17187
|
}
|
|
17178
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
|
|
17179
17189
|
type: Injectable,
|
|
17180
17190
|
args: [{
|
|
17181
17191
|
providedIn: 'root'
|
|
@@ -17191,10 +17201,10 @@ class SoleContactService extends RestService$1 {
|
|
|
17191
17201
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
17192
17202
|
this.useBackendError = true;
|
|
17193
17203
|
}
|
|
17194
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17195
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17204
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17205
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleContactService, providedIn: 'root' }); }
|
|
17196
17206
|
}
|
|
17197
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleContactService, decorators: [{
|
|
17198
17208
|
type: Injectable,
|
|
17199
17209
|
args: [{
|
|
17200
17210
|
providedIn: 'root'
|
|
@@ -17221,10 +17231,10 @@ class BusinessDepreciationMethodService extends RestService$1 {
|
|
|
17221
17231
|
this.roles = [UserRolesEnum.SOLE_TANK];
|
|
17222
17232
|
this.useBackendError = true;
|
|
17223
17233
|
}
|
|
17224
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17225
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17234
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessDepreciationMethodService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17235
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessDepreciationMethodService, providedIn: 'root' }); }
|
|
17226
17236
|
}
|
|
17227
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessDepreciationMethodService, decorators: [{
|
|
17228
17238
|
type: Injectable,
|
|
17229
17239
|
args: [{
|
|
17230
17240
|
providedIn: 'root'
|
|
@@ -17246,10 +17256,10 @@ class SoleDetailsService extends RestService$1 {
|
|
|
17246
17256
|
get() {
|
|
17247
17257
|
return super.get().pipe(map(soleDetails => soleDetails.length ? soleDetails : new Collection([plainToClass(SoleDetails, {})])));
|
|
17248
17258
|
}
|
|
17249
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17250
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17259
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17260
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsService, providedIn: 'root' }); }
|
|
17251
17261
|
}
|
|
17252
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsService, decorators: [{
|
|
17253
17263
|
type: Injectable,
|
|
17254
17264
|
args: [{
|
|
17255
17265
|
providedIn: 'root'
|
|
@@ -17291,10 +17301,10 @@ class SoleInvoiceService extends RestService$1 {
|
|
|
17291
17301
|
getInvoices() {
|
|
17292
17302
|
return this.get().pipe(map((invoices) => invoices.filterBy('type', SoleInvoiceTypeEnum.INVOICE)));
|
|
17293
17303
|
}
|
|
17294
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17295
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17304
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17305
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' }); }
|
|
17296
17306
|
}
|
|
17297
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17307
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceService, decorators: [{
|
|
17298
17308
|
type: Injectable,
|
|
17299
17309
|
args: [{
|
|
17300
17310
|
providedIn: 'root'
|
|
@@ -17310,10 +17320,10 @@ class SoleInvoiceTemplateService extends RestService {
|
|
|
17310
17320
|
this.modelClass = SoleInvoiceTemplate;
|
|
17311
17321
|
this.url = 'sole-invoice-templates';
|
|
17312
17322
|
}
|
|
17313
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17314
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17323
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17324
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' }); }
|
|
17315
17325
|
}
|
|
17316
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17326
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
|
|
17317
17327
|
type: Injectable,
|
|
17318
17328
|
args: [{
|
|
17319
17329
|
providedIn: 'root'
|
|
@@ -17337,10 +17347,10 @@ class BasReportService extends RestService$1 {
|
|
|
17337
17347
|
this.roles = [UserRolesEnum.SOLE_TANK];
|
|
17338
17348
|
this.useBackendError = true;
|
|
17339
17349
|
}
|
|
17340
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17341
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17350
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17351
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasReportService, providedIn: 'root' }); }
|
|
17342
17352
|
}
|
|
17343
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17353
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasReportService, decorators: [{
|
|
17344
17354
|
type: Injectable,
|
|
17345
17355
|
args: [{
|
|
17346
17356
|
providedIn: 'root'
|
|
@@ -17364,10 +17374,10 @@ class ServicePaymentService extends RestService$1 {
|
|
|
17364
17374
|
}
|
|
17365
17375
|
return this.http.get(`${this.environment.apiV2}/service-payments/${payment.id}/invoice-url`);
|
|
17366
17376
|
}
|
|
17367
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17368
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17377
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17378
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentService, providedIn: 'root' }); }
|
|
17369
17379
|
}
|
|
17370
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17380
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentService, decorators: [{
|
|
17371
17381
|
type: Injectable,
|
|
17372
17382
|
args: [{
|
|
17373
17383
|
providedIn: 'root'
|
|
@@ -17399,10 +17409,10 @@ class ServicePaymentMethodService extends RestService$1 {
|
|
|
17399
17409
|
return this.http.put(`${this.apiUrl}/${paymentMethod.id}/default`, {})
|
|
17400
17410
|
.pipe(map((updatedPaymentMethod) => plainToClass(ServicePaymentMethod, updatedPaymentMethod)));
|
|
17401
17411
|
}
|
|
17402
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17403
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17412
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentMethodService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17413
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' }); }
|
|
17404
17414
|
}
|
|
17405
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17415
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
|
|
17406
17416
|
type: Injectable,
|
|
17407
17417
|
args: [{
|
|
17408
17418
|
providedIn: 'root'
|
|
@@ -17423,10 +17433,10 @@ class ServicePriceService extends RestService$1 {
|
|
|
17423
17433
|
this.collectionClass = ServicePriceCollection;
|
|
17424
17434
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
17425
17435
|
}
|
|
17426
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17427
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17436
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17437
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePriceService, providedIn: 'root' }); }
|
|
17428
17438
|
}
|
|
17429
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17439
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePriceService, decorators: [{
|
|
17430
17440
|
type: Injectable,
|
|
17431
17441
|
args: [{
|
|
17432
17442
|
providedIn: 'root'
|
|
@@ -17511,10 +17521,10 @@ class SubscriptionService extends RestService$1 {
|
|
|
17511
17521
|
get(path = this.apiUrl) {
|
|
17512
17522
|
return super.get(path).pipe(map(subscriptions => subscriptions.sortBy('isActive', 'ask')));
|
|
17513
17523
|
}
|
|
17514
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17515
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17524
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SubscriptionService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17525
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SubscriptionService, providedIn: 'root' }); }
|
|
17516
17526
|
}
|
|
17517
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17527
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SubscriptionService, decorators: [{
|
|
17518
17528
|
type: Injectable,
|
|
17519
17529
|
args: [{
|
|
17520
17530
|
providedIn: 'root'
|
|
@@ -17532,10 +17542,10 @@ class ServiceProductService extends RestService$1 {
|
|
|
17532
17542
|
this.endpointUri = 'service-products';
|
|
17533
17543
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
17534
17544
|
}
|
|
17535
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17536
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17545
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17546
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceProductService, providedIn: 'root' }); }
|
|
17537
17547
|
}
|
|
17538
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17548
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceProductService, decorators: [{
|
|
17539
17549
|
type: Injectable,
|
|
17540
17550
|
args: [{
|
|
17541
17551
|
providedIn: 'root'
|
|
@@ -17671,10 +17681,10 @@ class TaxReviewHistoryService extends RestService {
|
|
|
17671
17681
|
this.updateCache();
|
|
17672
17682
|
});
|
|
17673
17683
|
}
|
|
17674
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17675
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17684
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewHistoryService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17685
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' }); }
|
|
17676
17686
|
}
|
|
17677
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17687
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
|
|
17678
17688
|
type: Injectable,
|
|
17679
17689
|
args: [{
|
|
17680
17690
|
providedIn: 'root'
|
|
@@ -17767,10 +17777,10 @@ class TaxReviewService extends RestService {
|
|
|
17767
17777
|
}
|
|
17768
17778
|
});
|
|
17769
17779
|
}
|
|
17770
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17771
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17780
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17781
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewService, providedIn: 'root' }); }
|
|
17772
17782
|
}
|
|
17773
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17783
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewService, decorators: [{
|
|
17774
17784
|
type: Injectable,
|
|
17775
17785
|
args: [{
|
|
17776
17786
|
providedIn: 'root'
|
|
@@ -18101,10 +18111,10 @@ class TaxSummaryService {
|
|
|
18101
18111
|
this.getForecast().subscribe();
|
|
18102
18112
|
});
|
|
18103
18113
|
}
|
|
18104
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18105
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18114
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxSummaryService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18115
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxSummaryService, providedIn: 'root' }); }
|
|
18106
18116
|
}
|
|
18107
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxSummaryService, decorators: [{
|
|
18108
18118
|
type: Injectable,
|
|
18109
18119
|
args: [{
|
|
18110
18120
|
providedIn: 'root'
|
|
@@ -18125,10 +18135,10 @@ class AllocationRuleService extends RestService$1 {
|
|
|
18125
18135
|
getCustomHttpErrorMessages() {
|
|
18126
18136
|
return { 422: 'You can only have 10 conditions in a rule' };
|
|
18127
18137
|
}
|
|
18128
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18129
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18138
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18139
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AllocationRuleService, providedIn: 'root' }); }
|
|
18130
18140
|
}
|
|
18131
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18141
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AllocationRuleService, decorators: [{
|
|
18132
18142
|
type: Injectable,
|
|
18133
18143
|
args: [{
|
|
18134
18144
|
providedIn: 'root'
|
|
@@ -18233,10 +18243,10 @@ class TransactionAllocationService extends RestService {
|
|
|
18233
18243
|
}
|
|
18234
18244
|
});
|
|
18235
18245
|
}
|
|
18236
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18237
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18246
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionAllocationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18247
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' }); }
|
|
18238
18248
|
}
|
|
18239
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18249
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionAllocationService, decorators: [{
|
|
18240
18250
|
type: Injectable,
|
|
18241
18251
|
args: [{
|
|
18242
18252
|
providedIn: 'root'
|
|
@@ -18488,10 +18498,10 @@ class TransactionService extends RestService {
|
|
|
18488
18498
|
}
|
|
18489
18499
|
});
|
|
18490
18500
|
}
|
|
18491
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18492
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18501
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18502
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionService, providedIn: 'root' }); }
|
|
18493
18503
|
}
|
|
18494
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18504
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionService, decorators: [{
|
|
18495
18505
|
type: Injectable,
|
|
18496
18506
|
args: [{
|
|
18497
18507
|
providedIn: 'root'
|
|
@@ -18517,10 +18527,10 @@ class PriorTransactionService extends RestService$1 {
|
|
|
18517
18527
|
const financialYear = new FinancialYear(new FinancialYear().year - 1);
|
|
18518
18528
|
return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(transactions => transactions.filterByFinancialYear('date', null, financialYear)));
|
|
18519
18529
|
}
|
|
18520
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18521
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18530
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18531
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorTransactionService, providedIn: 'root' }); }
|
|
18522
18532
|
}
|
|
18523
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18533
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorTransactionService, decorators: [{
|
|
18524
18534
|
type: Injectable,
|
|
18525
18535
|
args: [{
|
|
18526
18536
|
providedIn: 'root'
|
|
@@ -18542,10 +18552,10 @@ class InvoiceTransactionsService extends RestService$1 {
|
|
|
18542
18552
|
this.endpointUri = 'invoices/transactions';
|
|
18543
18553
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
18544
18554
|
}
|
|
18545
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18546
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18555
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InvoiceTransactionsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18556
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InvoiceTransactionsService, providedIn: 'root' }); }
|
|
18547
18557
|
}
|
|
18548
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18558
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InvoiceTransactionsService, decorators: [{
|
|
18549
18559
|
type: Injectable,
|
|
18550
18560
|
args: [{
|
|
18551
18561
|
providedIn: 'root'
|
|
@@ -18569,10 +18579,10 @@ class YoutubeService {
|
|
|
18569
18579
|
title: item.snippet.title
|
|
18570
18580
|
}))));
|
|
18571
18581
|
}
|
|
18572
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18573
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18582
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: YoutubeService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18583
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: YoutubeService, providedIn: 'root' }); }
|
|
18574
18584
|
}
|
|
18575
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18585
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: YoutubeService, decorators: [{
|
|
18576
18586
|
type: Injectable,
|
|
18577
18587
|
args: [{
|
|
18578
18588
|
providedIn: 'root'
|
|
@@ -18592,10 +18602,10 @@ class VehicleService extends RestService$1 {
|
|
|
18592
18602
|
this.collectionClass = (Collection);
|
|
18593
18603
|
this.modelClass = Vehicle;
|
|
18594
18604
|
}
|
|
18595
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18596
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18605
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18606
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleService, providedIn: 'root' }); }
|
|
18597
18607
|
}
|
|
18598
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18608
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleService, decorators: [{
|
|
18599
18609
|
type: Injectable,
|
|
18600
18610
|
args: [{
|
|
18601
18611
|
providedIn: 'root'
|
|
@@ -18618,10 +18628,10 @@ class VehicleClaimService extends RestService$1 {
|
|
|
18618
18628
|
this.collectionClass = VehicleClaimCollection;
|
|
18619
18629
|
this.roles = [UserRolesEnum$1.WORK_TANK, UserRolesEnum$1.SOLE_TANK];
|
|
18620
18630
|
}
|
|
18621
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18622
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18631
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18632
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleClaimService, providedIn: 'root' }); }
|
|
18623
18633
|
}
|
|
18624
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18634
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleClaimService, decorators: [{
|
|
18625
18635
|
type: Injectable,
|
|
18626
18636
|
args: [{
|
|
18627
18637
|
providedIn: 'root'
|
|
@@ -18639,10 +18649,10 @@ class VehicleLogbookService extends RestService$1 {
|
|
|
18639
18649
|
this.collectionClass = VehicleLogbookCollection;
|
|
18640
18650
|
this.modelClass = VehicleLogbook;
|
|
18641
18651
|
}
|
|
18642
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18643
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18652
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18653
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' }); }
|
|
18644
18654
|
}
|
|
18645
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18655
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleLogbookService, decorators: [{
|
|
18646
18656
|
type: Injectable,
|
|
18647
18657
|
args: [{
|
|
18648
18658
|
providedIn: 'root'
|
|
@@ -18665,10 +18675,10 @@ class AnnualClientDetailsService extends RestService$1 {
|
|
|
18665
18675
|
this.endpointUri = 'annual-client-details';
|
|
18666
18676
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
|
|
18667
18677
|
}
|
|
18668
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18669
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18678
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AnnualClientDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18679
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AnnualClientDetailsService, providedIn: 'root' }); }
|
|
18670
18680
|
}
|
|
18671
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18681
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
|
|
18672
18682
|
type: Injectable,
|
|
18673
18683
|
args: [{
|
|
18674
18684
|
providedIn: 'root'
|
|
@@ -18698,10 +18708,10 @@ class OccupationService {
|
|
|
18698
18708
|
}
|
|
18699
18709
|
return this.occupationsSubject.asObservable();
|
|
18700
18710
|
}
|
|
18701
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18702
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18711
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: OccupationService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18712
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: OccupationService, providedIn: 'root' }); }
|
|
18703
18713
|
}
|
|
18704
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18714
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: OccupationService, decorators: [{
|
|
18705
18715
|
type: Injectable,
|
|
18706
18716
|
args: [{
|
|
18707
18717
|
providedIn: 'root'
|
|
@@ -18724,10 +18734,10 @@ class ClientCouponService extends RestService$1 {
|
|
|
18724
18734
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
18725
18735
|
this.skipErrorCodes = [404];
|
|
18726
18736
|
}
|
|
18727
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18728
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18737
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientCouponService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18738
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientCouponService, providedIn: 'root' }); }
|
|
18729
18739
|
}
|
|
18730
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18740
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientCouponService, decorators: [{
|
|
18731
18741
|
type: Injectable,
|
|
18732
18742
|
args: [{
|
|
18733
18743
|
providedIn: 'root'
|
|
@@ -18742,10 +18752,10 @@ class CapitalLossService extends RestService$1 {
|
|
|
18742
18752
|
this.collectionClass = (Collection);
|
|
18743
18753
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
18744
18754
|
}
|
|
18745
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18746
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18755
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CapitalLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18756
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CapitalLossService, providedIn: 'root' }); }
|
|
18747
18757
|
}
|
|
18748
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18758
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CapitalLossService, decorators: [{
|
|
18749
18759
|
type: Injectable,
|
|
18750
18760
|
args: [{
|
|
18751
18761
|
providedIn: 'root'
|
|
@@ -18808,10 +18818,10 @@ class UserEventSettingService extends RestService$1 {
|
|
|
18808
18818
|
this.endpointUri = 'user-event-settings';
|
|
18809
18819
|
this.disabledMethods = ['postBatch', 'putBatch', 'delete', 'deleteBatch'];
|
|
18810
18820
|
}
|
|
18811
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18812
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18821
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18822
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventSettingService, providedIn: 'root' }); }
|
|
18813
18823
|
}
|
|
18814
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18824
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventSettingService, decorators: [{
|
|
18815
18825
|
type: Injectable,
|
|
18816
18826
|
args: [{
|
|
18817
18827
|
providedIn: 'root'
|
|
@@ -18826,10 +18836,10 @@ class UserEventTypeService extends RestService$1 {
|
|
|
18826
18836
|
this.endpointUri = 'user-event-types';
|
|
18827
18837
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
18828
18838
|
}
|
|
18829
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18830
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18839
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18840
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventTypeService, providedIn: 'root' }); }
|
|
18831
18841
|
}
|
|
18832
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18842
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventTypeService, decorators: [{
|
|
18833
18843
|
type: Injectable,
|
|
18834
18844
|
args: [{
|
|
18835
18845
|
providedIn: 'root'
|
|
@@ -18857,10 +18867,10 @@ class UsersInviteService extends RestService {
|
|
|
18857
18867
|
this.modelClass = RegistrationInvite;
|
|
18858
18868
|
this.url = 'users/invite';
|
|
18859
18869
|
}
|
|
18860
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18861
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18870
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18871
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UsersInviteService, providedIn: 'root' }); }
|
|
18862
18872
|
}
|
|
18863
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18873
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UsersInviteService, decorators: [{
|
|
18864
18874
|
type: Injectable,
|
|
18865
18875
|
args: [{
|
|
18866
18876
|
providedIn: 'root'
|
|
@@ -18968,10 +18978,10 @@ class UserService extends RestService$1 {
|
|
|
18968
18978
|
this.setCache([user], true);
|
|
18969
18979
|
}, ['post', 'put']);
|
|
18970
18980
|
}
|
|
18971
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18972
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18981
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18982
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserService, providedIn: 'root' }); }
|
|
18973
18983
|
}
|
|
18974
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18984
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserService, decorators: [{
|
|
18975
18985
|
type: Injectable,
|
|
18976
18986
|
args: [{
|
|
18977
18987
|
providedIn: 'root'
|
|
@@ -18992,10 +19002,10 @@ class FinancialYearService {
|
|
|
18992
19002
|
window.location.reload();
|
|
18993
19003
|
}));
|
|
18994
19004
|
}
|
|
18995
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18996
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19005
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19006
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearService, providedIn: 'root' }); }
|
|
18997
19007
|
}
|
|
18998
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19008
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearService, decorators: [{
|
|
18999
19009
|
type: Injectable,
|
|
19000
19010
|
args: [{
|
|
19001
19011
|
providedIn: 'root'
|
|
@@ -19039,10 +19049,10 @@ class MfaDetailsService extends RestService$1 {
|
|
|
19039
19049
|
return mfaDetails;
|
|
19040
19050
|
}));
|
|
19041
19051
|
}
|
|
19042
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19043
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19052
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MfaDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19053
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MfaDetailsService, providedIn: 'root' }); }
|
|
19044
19054
|
}
|
|
19045
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19055
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MfaDetailsService, decorators: [{
|
|
19046
19056
|
type: Injectable,
|
|
19047
19057
|
args: [{
|
|
19048
19058
|
providedIn: 'root'
|
|
@@ -19079,10 +19089,10 @@ class HoldingTradeService extends RestService$1 {
|
|
|
19079
19089
|
}
|
|
19080
19090
|
});
|
|
19081
19091
|
}
|
|
19082
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19083
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19092
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19093
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeService, providedIn: 'root' }); }
|
|
19084
19094
|
}
|
|
19085
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19095
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeService, decorators: [{
|
|
19086
19096
|
type: Injectable,
|
|
19087
19097
|
args: [{
|
|
19088
19098
|
providedIn: 'root'
|
|
@@ -19122,10 +19132,10 @@ class HoldingTypeService extends RestService$1 {
|
|
|
19122
19132
|
}
|
|
19123
19133
|
});
|
|
19124
19134
|
}
|
|
19125
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19126
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19135
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19136
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeService, providedIn: 'root' }); }
|
|
19127
19137
|
}
|
|
19128
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19138
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeService, decorators: [{
|
|
19129
19139
|
type: Injectable,
|
|
19130
19140
|
args: [{
|
|
19131
19141
|
providedIn: 'root'
|
|
@@ -19144,10 +19154,10 @@ class HoldingSaleService extends RestService$1 {
|
|
|
19144
19154
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
19145
19155
|
this.roles = [UserRolesEnum$1.HOLDING_TANK];
|
|
19146
19156
|
}
|
|
19147
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19148
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19157
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19158
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingSaleService, providedIn: 'root' }); }
|
|
19149
19159
|
}
|
|
19150
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingSaleService, decorators: [{
|
|
19151
19161
|
type: Injectable,
|
|
19152
19162
|
args: [{
|
|
19153
19163
|
providedIn: 'root'
|
|
@@ -19180,10 +19190,10 @@ class HoldingTradeImportService extends RestService$1 {
|
|
|
19180
19190
|
formData.append('isTaxFree', (isTaxFree ? 1 : 0).toString());
|
|
19181
19191
|
return this.importFile(formData).pipe(tap$1(() => this.toastService.success(HoldingTradeImportMessagesEnum.CREATED)));
|
|
19182
19192
|
}
|
|
19183
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19184
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19193
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeImportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19194
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeImportService, providedIn: 'root' }); }
|
|
19185
19195
|
}
|
|
19186
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19196
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeImportService, decorators: [{
|
|
19187
19197
|
type: Injectable,
|
|
19188
19198
|
args: [{
|
|
19189
19199
|
providedIn: 'root'
|
|
@@ -19277,10 +19287,10 @@ class HoldingTypeExchangeService extends DataService {
|
|
|
19277
19287
|
this.collectionClass = Collection;
|
|
19278
19288
|
this.setCache(HoldingTypeExchanges);
|
|
19279
19289
|
}
|
|
19280
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19281
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19290
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeExchangeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19291
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeExchangeService, providedIn: 'root' }); }
|
|
19282
19292
|
}
|
|
19283
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19293
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeExchangeService, decorators: [{
|
|
19284
19294
|
type: Injectable,
|
|
19285
19295
|
args: [{
|
|
19286
19296
|
providedIn: 'root'
|
|
@@ -19322,10 +19332,10 @@ class HoldingTaxStatementService extends RestService$1 {
|
|
|
19322
19332
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
19323
19333
|
this.roles = [UserRolesEnum.HOLDING_TANK];
|
|
19324
19334
|
}
|
|
19325
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19326
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19335
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19336
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementService, providedIn: 'root' }); }
|
|
19327
19337
|
}
|
|
19328
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19338
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementService, decorators: [{
|
|
19329
19339
|
type: Injectable,
|
|
19330
19340
|
args: [{
|
|
19331
19341
|
providedIn: 'root'
|
|
@@ -19349,10 +19359,10 @@ class HoldingTaxStatementPayerService extends RestService$1 {
|
|
|
19349
19359
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
19350
19360
|
this.roles = [UserRolesEnum.HOLDING_TANK];
|
|
19351
19361
|
}
|
|
19352
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19353
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19362
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementPayerService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19363
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementPayerService, providedIn: 'root' }); }
|
|
19354
19364
|
}
|
|
19355
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19365
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementPayerService, decorators: [{
|
|
19356
19366
|
type: Injectable,
|
|
19357
19367
|
args: [{
|
|
19358
19368
|
providedIn: 'root'
|
|
@@ -19369,10 +19379,10 @@ class HoldingCostAdjustmentService extends RestService$1 {
|
|
|
19369
19379
|
this.roles = [UserRolesEnum.HOLDING_TANK];
|
|
19370
19380
|
this.useBackendError = true;
|
|
19371
19381
|
}
|
|
19372
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19373
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19382
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingCostAdjustmentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19383
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingCostAdjustmentService, providedIn: 'root' }); }
|
|
19374
19384
|
}
|
|
19375
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19385
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingCostAdjustmentService, decorators: [{
|
|
19376
19386
|
type: Injectable,
|
|
19377
19387
|
args: [{
|
|
19378
19388
|
providedIn: 'root'
|
|
@@ -19396,10 +19406,10 @@ class HomeOfficeClaimService extends RestService$1 {
|
|
|
19396
19406
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
19397
19407
|
this.roles = [UserRolesEnum$1.WORK_TANK, UserRolesEnum$1.SOLE_TANK];
|
|
19398
19408
|
}
|
|
19399
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19400
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19409
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19410
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeClaimService, providedIn: 'root' }); }
|
|
19401
19411
|
}
|
|
19402
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19412
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeClaimService, decorators: [{
|
|
19403
19413
|
type: Injectable,
|
|
19404
19414
|
args: [{
|
|
19405
19415
|
providedIn: 'root'
|
|
@@ -19427,10 +19437,10 @@ class HomeOfficeLogService extends RestService$1 {
|
|
|
19427
19437
|
listenEvents() {
|
|
19428
19438
|
this.listenCSE(HomeOfficeClaim, this.refreshCache, ['post']);
|
|
19429
19439
|
}
|
|
19430
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19431
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19440
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeLogService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19441
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeLogService, providedIn: 'root' }); }
|
|
19432
19442
|
}
|
|
19433
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19443
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeLogService, decorators: [{
|
|
19434
19444
|
type: Injectable,
|
|
19435
19445
|
args: [{
|
|
19436
19446
|
providedIn: 'root'
|
|
@@ -19470,10 +19480,10 @@ class AussieService extends RestService$1 {
|
|
|
19470
19480
|
postAppointment() {
|
|
19471
19481
|
return this.http.delete(`${this.environment.apiV2}/aussie/appointments`);
|
|
19472
19482
|
}
|
|
19473
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19474
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19483
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19484
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieService, providedIn: 'root' }); }
|
|
19475
19485
|
}
|
|
19476
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19486
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieService, decorators: [{
|
|
19477
19487
|
type: Injectable,
|
|
19478
19488
|
args: [{
|
|
19479
19489
|
providedIn: 'root'
|
|
@@ -19497,10 +19507,10 @@ class SharesightDetailsService extends RestService$1 {
|
|
|
19497
19507
|
reconnect(sharesightDetails) {
|
|
19498
19508
|
return this.put(sharesightDetails, `${this.apiUrl}/${sharesightDetails.id}/reconnect`);
|
|
19499
19509
|
}
|
|
19500
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19501
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19510
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19511
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightDetailsService, providedIn: 'root' }); }
|
|
19502
19512
|
}
|
|
19503
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19513
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightDetailsService, decorators: [{
|
|
19504
19514
|
type: Injectable,
|
|
19505
19515
|
args: [{
|
|
19506
19516
|
providedIn: 'root'
|
|
@@ -19518,10 +19528,10 @@ class SharesightPortfolioService extends RestService$1 {
|
|
|
19518
19528
|
getExternal() {
|
|
19519
19529
|
return this.fetch(`${this.apiUrl}/external`, false);
|
|
19520
19530
|
}
|
|
19521
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19522
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19531
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightPortfolioService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19532
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightPortfolioService, providedIn: 'root' }); }
|
|
19523
19533
|
}
|
|
19524
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19534
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightPortfolioService, decorators: [{
|
|
19525
19535
|
type: Injectable,
|
|
19526
19536
|
args: [{
|
|
19527
19537
|
providedIn: 'root'
|
|
@@ -19603,10 +19613,10 @@ class IncomeSourceTypeService extends DataService {
|
|
|
19603
19613
|
this.collectionClass = Collection;
|
|
19604
19614
|
this.setCache(IncomeSourceTypes);
|
|
19605
19615
|
}
|
|
19606
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19607
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19616
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceTypeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19617
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceTypeService, providedIn: 'root' }); }
|
|
19608
19618
|
}
|
|
19609
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19619
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceTypeService, decorators: [{
|
|
19610
19620
|
type: Injectable,
|
|
19611
19621
|
args: [{
|
|
19612
19622
|
providedIn: 'root'
|
|
@@ -19620,10 +19630,10 @@ class ChartAccountsValueService extends DataService {
|
|
|
19620
19630
|
this.collectionClass = ChartAccountsValueCollection;
|
|
19621
19631
|
this.setCache(ChartAccountsValues);
|
|
19622
19632
|
}
|
|
19623
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19624
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19633
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsValueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19634
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsValueService, providedIn: 'root' }); }
|
|
19625
19635
|
}
|
|
19626
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19636
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsValueService, decorators: [{
|
|
19627
19637
|
type: Injectable,
|
|
19628
19638
|
args: [{
|
|
19629
19639
|
providedIn: 'root'
|
|
@@ -21596,10 +21606,10 @@ class TaxReturnItemService extends DataService {
|
|
|
21596
21606
|
this.collectionClass = Collection;
|
|
21597
21607
|
this.setCache(TaxReturnItems);
|
|
21598
21608
|
}
|
|
21599
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
21600
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
21609
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReturnItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
21610
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReturnItemService, providedIn: 'root' }); }
|
|
21601
21611
|
}
|
|
21602
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
21612
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReturnItemService, decorators: [{
|
|
21603
21613
|
type: Injectable,
|
|
21604
21614
|
args: [{
|
|
21605
21615
|
providedIn: 'root'
|
|
@@ -21780,10 +21790,10 @@ class CurrencyService extends DataService {
|
|
|
21780
21790
|
this.collectionClass = Collection;
|
|
21781
21791
|
this.setCache(Currencies);
|
|
21782
21792
|
}
|
|
21783
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
21784
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
21793
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrencyService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
21794
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrencyService, providedIn: 'root' }); }
|
|
21785
21795
|
}
|
|
21786
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
21796
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrencyService, decorators: [{
|
|
21787
21797
|
type: Injectable,
|
|
21788
21798
|
args: [{
|
|
21789
21799
|
providedIn: 'root'
|
|
@@ -23294,10 +23304,10 @@ class CountryService extends DataService {
|
|
|
23294
23304
|
this.collectionClass = Collection;
|
|
23295
23305
|
this.setCache(countries);
|
|
23296
23306
|
}
|
|
23297
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23298
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23307
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CountryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23308
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CountryService, providedIn: 'root' }); }
|
|
23299
23309
|
}
|
|
23300
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23310
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CountryService, decorators: [{
|
|
23301
23311
|
type: Injectable,
|
|
23302
23312
|
args: [{
|
|
23303
23313
|
providedIn: 'root'
|
|
@@ -23312,10 +23322,10 @@ class SetupItemService extends RestService$1 {
|
|
|
23312
23322
|
this.collectionClass = AccountSetupItemCollection;
|
|
23313
23323
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
23314
23324
|
}
|
|
23315
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23316
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23325
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SetupItemService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23326
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SetupItemService, providedIn: 'root' }); }
|
|
23317
23327
|
}
|
|
23318
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23328
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SetupItemService, decorators: [{
|
|
23319
23329
|
type: Injectable,
|
|
23320
23330
|
args: [{
|
|
23321
23331
|
providedIn: 'root'
|
|
@@ -23505,10 +23515,10 @@ class AccountSetupService {
|
|
|
23505
23515
|
getSharesightDetails(importEnabled) {
|
|
23506
23516
|
return this.sharesightDetailsService.getArray().pipe(map(details => details.filter(detail => importEnabled ? detail.importEnabled : detail.exportEnabled)));
|
|
23507
23517
|
}
|
|
23508
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23509
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23518
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AccountSetupService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23519
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AccountSetupService, providedIn: 'root' }); }
|
|
23510
23520
|
}
|
|
23511
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23521
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AccountSetupService, decorators: [{
|
|
23512
23522
|
type: Injectable,
|
|
23513
23523
|
args: [{
|
|
23514
23524
|
providedIn: 'root'
|
|
@@ -23523,10 +23533,10 @@ class AdblockDetectorService {
|
|
|
23523
23533
|
constructor() {
|
|
23524
23534
|
checkAdBlock().then((isDetected) => this.isDetected = isDetected);
|
|
23525
23535
|
}
|
|
23526
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23527
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23536
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdblockDetectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23537
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdblockDetectorService, providedIn: 'root' }); }
|
|
23528
23538
|
}
|
|
23529
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23539
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdblockDetectorService, decorators: [{
|
|
23530
23540
|
type: Injectable,
|
|
23531
23541
|
args: [{
|
|
23532
23542
|
providedIn: 'root'
|
|
@@ -23569,10 +23579,10 @@ class UserSwitcherService {
|
|
|
23569
23579
|
window.location.replace('/client/dashboard');
|
|
23570
23580
|
});
|
|
23571
23581
|
}
|
|
23572
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23573
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23582
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23583
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherService, providedIn: 'root' }); }
|
|
23574
23584
|
}
|
|
23575
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23585
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherService, decorators: [{
|
|
23576
23586
|
type: Injectable,
|
|
23577
23587
|
args: [{
|
|
23578
23588
|
providedIn: 'root'
|
|
@@ -23616,10 +23626,10 @@ class AssetsService {
|
|
|
23616
23626
|
delete(entityId, asset) {
|
|
23617
23627
|
return this.http.delete(`${this.environment.apiV2}/${asset.entityType}/${entityId}/${asset.type}/${asset.id}`);
|
|
23618
23628
|
}
|
|
23619
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23620
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23629
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AssetsService, deps: [{ token: i1.HttpClient }, { token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23630
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AssetsService, providedIn: 'root' }); }
|
|
23621
23631
|
}
|
|
23622
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23632
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AssetsService, decorators: [{
|
|
23623
23633
|
type: Injectable,
|
|
23624
23634
|
args: [{
|
|
23625
23635
|
providedIn: 'root'
|
|
@@ -23650,10 +23660,10 @@ class BankAccountCalculationService {
|
|
|
23650
23660
|
});
|
|
23651
23661
|
return total;
|
|
23652
23662
|
}
|
|
23653
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23654
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23663
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23664
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' }); }
|
|
23655
23665
|
}
|
|
23656
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23666
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountCalculationService, decorators: [{
|
|
23657
23667
|
type: Injectable,
|
|
23658
23668
|
args: [{
|
|
23659
23669
|
providedIn: 'root'
|
|
@@ -23690,10 +23700,10 @@ class CorelogicService {
|
|
|
23690
23700
|
return throwError(() => error);
|
|
23691
23701
|
}));
|
|
23692
23702
|
}
|
|
23693
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23694
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23703
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23704
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicService, providedIn: 'root' }); }
|
|
23695
23705
|
}
|
|
23696
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23706
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicService, decorators: [{
|
|
23697
23707
|
type: Injectable,
|
|
23698
23708
|
args: [{
|
|
23699
23709
|
providedIn: 'root'
|
|
@@ -23711,10 +23721,10 @@ class GooglePlaceService {
|
|
|
23711
23721
|
getSuggestions(search, country = 'au') {
|
|
23712
23722
|
return this.http.get(`${this.environment.apiV2}/google-place/suggestions`, { params: { search, country } }).pipe(map((response) => response.map((item) => plainToClass(AddressSuggestion, item))));
|
|
23713
23723
|
}
|
|
23714
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23715
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23724
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GooglePlaceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23725
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GooglePlaceService, providedIn: 'root' }); }
|
|
23716
23726
|
}
|
|
23717
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23727
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GooglePlaceService, decorators: [{
|
|
23718
23728
|
type: Injectable,
|
|
23719
23729
|
args: [{
|
|
23720
23730
|
providedIn: 'root'
|
|
@@ -23744,10 +23754,10 @@ class ExportFormatterService {
|
|
|
23744
23754
|
}
|
|
23745
23755
|
}));
|
|
23746
23756
|
}
|
|
23747
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23748
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23757
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExportFormatterService, deps: [{ token: i1$1.CurrencyPipe }, { token: i1$1.PercentPipe }, { token: i1$1.DatePipe }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23758
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExportFormatterService, providedIn: 'root' }); }
|
|
23749
23759
|
}
|
|
23750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23760
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExportFormatterService, decorators: [{
|
|
23751
23761
|
type: Injectable,
|
|
23752
23762
|
args: [{
|
|
23753
23763
|
providedIn: 'root'
|
|
@@ -23767,10 +23777,10 @@ class HeaderTitleService {
|
|
|
23767
23777
|
return route;
|
|
23768
23778
|
}), filter((route) => route.outlet === 'primary'), mergeMap((route) => route.data));
|
|
23769
23779
|
}
|
|
23770
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23771
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23780
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HeaderTitleService, deps: [{ token: i4.Router }, { token: i4.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23781
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HeaderTitleService, providedIn: 'root' }); }
|
|
23772
23782
|
}
|
|
23773
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23783
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HeaderTitleService, decorators: [{
|
|
23774
23784
|
type: Injectable,
|
|
23775
23785
|
args: [{
|
|
23776
23786
|
providedIn: 'root'
|
|
@@ -23803,10 +23813,10 @@ class IntercomService {
|
|
|
23803
23813
|
const connectionCredentials = this.initUser(user);
|
|
23804
23814
|
window.Intercom('boot', connectionCredentials);
|
|
23805
23815
|
}
|
|
23806
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23807
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23816
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23817
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IntercomService, providedIn: 'root' }); }
|
|
23808
23818
|
}
|
|
23809
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23819
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IntercomService, decorators: [{
|
|
23810
23820
|
type: Injectable,
|
|
23811
23821
|
args: [{
|
|
23812
23822
|
providedIn: 'root'
|
|
@@ -23922,10 +23932,10 @@ class PdfFromDomElementService {
|
|
|
23922
23932
|
idoc.head.appendChild(clone);
|
|
23923
23933
|
});
|
|
23924
23934
|
}
|
|
23925
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23926
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23935
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23936
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' }); }
|
|
23927
23937
|
}
|
|
23928
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23938
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDomElementService, decorators: [{
|
|
23929
23939
|
type: Injectable,
|
|
23930
23940
|
args: [{
|
|
23931
23941
|
providedIn: 'root'
|
|
@@ -24041,10 +24051,10 @@ class PdfFromTableService {
|
|
|
24041
24051
|
startY: lastTableCoords + FILE_SETTINGS.titleCoords.top / 2,
|
|
24042
24052
|
});
|
|
24043
24053
|
}
|
|
24044
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24045
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24054
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24055
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromTableService, providedIn: 'root' }); }
|
|
24046
24056
|
}
|
|
24047
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24057
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromTableService, decorators: [{
|
|
24048
24058
|
type: Injectable,
|
|
24049
24059
|
args: [{
|
|
24050
24060
|
providedIn: 'root'
|
|
@@ -24086,10 +24096,10 @@ class PdfFromDataTableService extends PdfFromTableService {
|
|
|
24086
24096
|
});
|
|
24087
24097
|
return pdf;
|
|
24088
24098
|
}
|
|
24089
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24090
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24099
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24100
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' }); }
|
|
24091
24101
|
}
|
|
24092
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24102
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDataTableService, decorators: [{
|
|
24093
24103
|
type: Injectable,
|
|
24094
24104
|
args: [{
|
|
24095
24105
|
providedIn: 'root'
|
|
@@ -24140,10 +24150,10 @@ class PdfFromHtmlTableService extends PdfFromTableService {
|
|
|
24140
24150
|
Array.from(caption.children).map((node) => node.textContent).join('\n') :
|
|
24141
24151
|
caption.innerText;
|
|
24142
24152
|
}
|
|
24143
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24144
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24153
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24154
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' }); }
|
|
24145
24155
|
}
|
|
24146
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24156
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
|
|
24147
24157
|
type: Injectable,
|
|
24148
24158
|
args: [{
|
|
24149
24159
|
providedIn: 'root'
|
|
@@ -24167,10 +24177,10 @@ class PreloaderService {
|
|
|
24167
24177
|
activePreloaders = activePreloaders.filter((preloader) => preloader !== endpoint);
|
|
24168
24178
|
this.activePreloaders.next(activePreloaders);
|
|
24169
24179
|
}
|
|
24170
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24171
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24180
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24181
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderService, providedIn: 'root' }); }
|
|
24172
24182
|
}
|
|
24173
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24183
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderService, decorators: [{
|
|
24174
24184
|
type: Injectable,
|
|
24175
24185
|
args: [{
|
|
24176
24186
|
providedIn: 'root'
|
|
@@ -24196,10 +24206,10 @@ class EquityPositionChartService {
|
|
|
24196
24206
|
}))
|
|
24197
24207
|
}))));
|
|
24198
24208
|
}
|
|
24199
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24200
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24209
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EquityPositionChartService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24210
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' }); }
|
|
24201
24211
|
}
|
|
24202
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24212
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EquityPositionChartService, decorators: [{
|
|
24203
24213
|
type: Injectable,
|
|
24204
24214
|
args: [{
|
|
24205
24215
|
providedIn: 'root'
|
|
@@ -24362,10 +24372,10 @@ class PropertyCalculationService {
|
|
|
24362
24372
|
return new Badge('Monitoring performance');
|
|
24363
24373
|
}
|
|
24364
24374
|
}
|
|
24365
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24366
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24375
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24376
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' }); }
|
|
24367
24377
|
}
|
|
24368
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24378
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCalculationService, decorators: [{
|
|
24369
24379
|
type: Injectable,
|
|
24370
24380
|
args: [{
|
|
24371
24381
|
providedIn: 'root'
|
|
@@ -24423,10 +24433,10 @@ class PropertyTransactionReportService {
|
|
|
24423
24433
|
getDepreciations() {
|
|
24424
24434
|
return this.depreciationService.get().pipe(map((depreciations) => depreciations.getByChartAccountsCategories(CHART_ACCOUNTS_CATEGORIES.property)));
|
|
24425
24435
|
}
|
|
24426
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24427
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24436
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyTransactionReportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24437
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' }); }
|
|
24428
24438
|
}
|
|
24429
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24439
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
|
|
24430
24440
|
type: Injectable,
|
|
24431
24441
|
args: [{
|
|
24432
24442
|
providedIn: 'root'
|
|
@@ -24446,10 +24456,10 @@ class CurrentFirmBranchService {
|
|
|
24446
24456
|
set(firmBranches) {
|
|
24447
24457
|
this.firmBranchIds$.next(firmBranches.map(branch => branch.id));
|
|
24448
24458
|
}
|
|
24449
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24450
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24459
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrentFirmBranchService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24460
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrentFirmBranchService, providedIn: 'root' }); }
|
|
24451
24461
|
}
|
|
24452
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24462
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrentFirmBranchService, decorators: [{
|
|
24453
24463
|
type: Injectable,
|
|
24454
24464
|
args: [{
|
|
24455
24465
|
providedIn: 'root'
|
|
@@ -24544,10 +24554,10 @@ class XlsxService {
|
|
|
24544
24554
|
const data = new Blob([excelFile], { type: EXCEL_TYPE });
|
|
24545
24555
|
FileSaver.saveAs(data, `${fileName}.xlsx`);
|
|
24546
24556
|
}
|
|
24547
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24548
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24557
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24558
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: XlsxService, providedIn: 'root' }); }
|
|
24549
24559
|
}
|
|
24550
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24560
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: XlsxService, decorators: [{
|
|
24551
24561
|
type: Injectable,
|
|
24552
24562
|
args: [{
|
|
24553
24563
|
providedIn: 'root'
|
|
@@ -24581,10 +24591,10 @@ class CorelogicInterceptor {
|
|
|
24581
24591
|
}
|
|
24582
24592
|
});
|
|
24583
24593
|
}
|
|
24584
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24585
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24594
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicInterceptor, deps: [{ token: CorelogicService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24595
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicInterceptor }); }
|
|
24586
24596
|
}
|
|
24587
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24597
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicInterceptor, decorators: [{
|
|
24588
24598
|
type: Injectable
|
|
24589
24599
|
}], ctorParameters: () => [{ type: CorelogicService }, { type: undefined, decorators: [{
|
|
24590
24600
|
type: Inject,
|
|
@@ -24620,10 +24630,10 @@ class FinancialYearInterceptor {
|
|
|
24620
24630
|
}
|
|
24621
24631
|
return next.handle(clonedReq);
|
|
24622
24632
|
}
|
|
24623
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24624
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24633
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24634
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearInterceptor }); }
|
|
24625
24635
|
}
|
|
24626
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24636
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
|
|
24627
24637
|
type: Injectable
|
|
24628
24638
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
24629
24639
|
type: Inject,
|
|
@@ -24657,10 +24667,10 @@ class UserSwitcherInterceptor {
|
|
|
24657
24667
|
intercept(request, next) {
|
|
24658
24668
|
return next.handle(this.switch(request, this.userSwitcherService.get()));
|
|
24659
24669
|
}
|
|
24660
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24661
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24670
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherInterceptor, deps: [{ token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24671
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherInterceptor }); }
|
|
24662
24672
|
}
|
|
24663
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24673
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
|
|
24664
24674
|
type: Injectable
|
|
24665
24675
|
}], ctorParameters: () => [{ type: UserSwitcherService }, { type: undefined, decorators: [{
|
|
24666
24676
|
type: Inject,
|
|
@@ -25037,10 +25047,10 @@ class PreloaderInterceptor {
|
|
|
25037
25047
|
findEndpoint(requestPath) {
|
|
25038
25048
|
return Object.values(ENDPOINTS).find((endpoint) => endpoint.test(requestPath));
|
|
25039
25049
|
}
|
|
25040
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25041
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25050
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25051
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderInterceptor }); }
|
|
25042
25052
|
}
|
|
25043
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25053
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderInterceptor, decorators: [{
|
|
25044
25054
|
type: Injectable
|
|
25045
25055
|
}], ctorParameters: () => [{ type: PreloaderService }] });
|
|
25046
25056
|
|
|
@@ -25075,10 +25085,10 @@ class RewardfulInterceptor {
|
|
|
25075
25085
|
&& (window['Rewardful'].referral || window['Rewardful'].coupon?.id)
|
|
25076
25086
|
&& registrationUrls.some(registrationUrl => request.url.includes(registrationUrl));
|
|
25077
25087
|
}
|
|
25078
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25079
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25088
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RewardfulInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25089
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RewardfulInterceptor }); }
|
|
25080
25090
|
}
|
|
25081
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25091
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RewardfulInterceptor, decorators: [{
|
|
25082
25092
|
type: Injectable
|
|
25083
25093
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
25084
25094
|
type: Inject,
|
|
@@ -25107,10 +25117,10 @@ class AussieInterceptor {
|
|
|
25107
25117
|
}
|
|
25108
25118
|
});
|
|
25109
25119
|
}
|
|
25110
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25111
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25120
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieInterceptor, deps: [{ token: AussieService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25121
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieInterceptor }); }
|
|
25112
25122
|
}
|
|
25113
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieInterceptor, decorators: [{
|
|
25114
25124
|
type: Injectable
|
|
25115
25125
|
}], ctorParameters: () => [{ type: AussieService }, { type: undefined, decorators: [{
|
|
25116
25126
|
type: Inject,
|
|
@@ -25118,13 +25128,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImpor
|
|
|
25118
25128
|
}] }] });
|
|
25119
25129
|
|
|
25120
25130
|
const ADBLOCK_ERROR_HTML = new InjectionToken('ADBLOCK_ERROR_HTML');
|
|
25121
|
-
const ADBLOCK_ERROR_HTML_VALUE = `
|
|
25122
|
-
<div class="text-center">
|
|
25123
|
-
<strong>Action needed - Your adblocker is blocking CoreLogic</strong>
|
|
25124
|
-
To add a property in TaxTank we need to fetch data from CoreLogic, however your ad blocker is getting in the way.
|
|
25125
|
-
Please disable your adblocker or whitelist TaxTank to continue.
|
|
25126
|
-
<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>
|
|
25127
|
-
</div>
|
|
25131
|
+
const ADBLOCK_ERROR_HTML_VALUE = `
|
|
25132
|
+
<div class="text-center">
|
|
25133
|
+
<strong>Action needed - Your adblocker is blocking CoreLogic</strong>
|
|
25134
|
+
To add a property in TaxTank we need to fetch data from CoreLogic, however your ad blocker is getting in the way.
|
|
25135
|
+
Please disable your adblocker or whitelist TaxTank to continue.
|
|
25136
|
+
<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>
|
|
25137
|
+
</div>
|
|
25128
25138
|
`;
|
|
25129
25139
|
|
|
25130
25140
|
/**
|
|
@@ -25149,10 +25159,10 @@ class AdBlockErrorInterceptor {
|
|
|
25149
25159
|
}
|
|
25150
25160
|
return next.handle(request);
|
|
25151
25161
|
}
|
|
25152
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25153
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25162
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdBlockErrorInterceptor, deps: [{ token: 'environment' }, { token: AdblockDetectorService }, { token: ToastService }, { token: ADBLOCK_ERROR_HTML }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25163
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdBlockErrorInterceptor }); }
|
|
25154
25164
|
}
|
|
25155
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25165
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdBlockErrorInterceptor, decorators: [{
|
|
25156
25166
|
type: Injectable
|
|
25157
25167
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
25158
25168
|
type: Inject,
|
|
@@ -25163,9 +25173,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImpor
|
|
|
25163
25173
|
}] }] });
|
|
25164
25174
|
|
|
25165
25175
|
class InterceptorsModule {
|
|
25166
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25167
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
25168
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
25176
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
25177
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule }); }
|
|
25178
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, providers: [
|
|
25169
25179
|
{
|
|
25170
25180
|
provide: HTTP_INTERCEPTORS,
|
|
25171
25181
|
useClass: CorelogicInterceptor,
|
|
@@ -25208,7 +25218,7 @@ class InterceptorsModule {
|
|
|
25208
25218
|
}
|
|
25209
25219
|
] }); }
|
|
25210
25220
|
}
|
|
25211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25221
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, decorators: [{
|
|
25212
25222
|
type: NgModule,
|
|
25213
25223
|
args: [{
|
|
25214
25224
|
providers: [
|
|
@@ -25260,13 +25270,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImpor
|
|
|
25260
25270
|
* https://angular.io/guide/creating-libraries
|
|
25261
25271
|
*/
|
|
25262
25272
|
class CoreModule {
|
|
25263
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25264
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
25273
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
25274
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
|
|
25265
25275
|
InterceptorsModule] }); }
|
|
25266
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
25276
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
|
|
25267
25277
|
InterceptorsModule] }); }
|
|
25268
25278
|
}
|
|
25269
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25279
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, decorators: [{
|
|
25270
25280
|
type: NgModule,
|
|
25271
25281
|
args: [{
|
|
25272
25282
|
declarations: [],
|
|
@@ -25286,10 +25296,10 @@ class AppCurrencyPipe extends CurrencyPipe {
|
|
|
25286
25296
|
digitsInfo = digitsInfo ?? '1.0-' + (value.toString().match(/[1-9]/)?.index || 2);
|
|
25287
25297
|
return super.transform(value, currencyCode, display, digitsInfo, locale);
|
|
25288
25298
|
}
|
|
25289
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25290
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
25299
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppCurrencyPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
25300
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: AppCurrencyPipe, isStandalone: true, name: "appCurrency" }); }
|
|
25291
25301
|
}
|
|
25292
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25302
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppCurrencyPipe, decorators: [{
|
|
25293
25303
|
type: Pipe,
|
|
25294
25304
|
args: [{
|
|
25295
25305
|
name: 'appCurrency',
|
|
@@ -25304,10 +25314,10 @@ class AppPercentPipe {
|
|
|
25304
25314
|
transform(value, total, floor) {
|
|
25305
25315
|
return this.percentagePipe.transform(value, total, floor) + '%';
|
|
25306
25316
|
}
|
|
25307
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25308
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
25317
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppPercentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
25318
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: AppPercentPipe, isStandalone: true, name: "percentage" }); }
|
|
25309
25319
|
}
|
|
25310
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25320
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppPercentPipe, decorators: [{
|
|
25311
25321
|
type: Pipe,
|
|
25312
25322
|
args: [{
|
|
25313
25323
|
name: 'percentage',
|
|
@@ -25334,10 +25344,10 @@ class RelativeDatePipe {
|
|
|
25334
25344
|
return this.datePipe.transform(date.toDate(), DateFormatsEnum.DATE_SLASH);
|
|
25335
25345
|
}
|
|
25336
25346
|
}
|
|
25337
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25338
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
25347
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RelativeDatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
25348
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: RelativeDatePipe, isStandalone: true, name: "relativeDate" }); }
|
|
25339
25349
|
}
|
|
25340
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RelativeDatePipe, decorators: [{
|
|
25341
25351
|
type: Pipe,
|
|
25342
25352
|
args: [{
|
|
25343
25353
|
name: 'relativeDate',
|
|
@@ -25352,10 +25362,10 @@ class SafeUrlPipe {
|
|
|
25352
25362
|
transform(url) {
|
|
25353
25363
|
return this.sanitizer.bypassSecurityTrustResourceUrl(url);
|
|
25354
25364
|
}
|
|
25355
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25356
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
25365
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SafeUrlPipe, deps: [{ token: i1$2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
25366
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
|
|
25357
25367
|
}
|
|
25358
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25368
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SafeUrlPipe, decorators: [{
|
|
25359
25369
|
type: Pipe,
|
|
25360
25370
|
args: [{
|
|
25361
25371
|
name: 'safeUrl',
|
|
@@ -25708,10 +25718,10 @@ class BusinessResolver {
|
|
|
25708
25718
|
resolve() {
|
|
25709
25719
|
return this.soleDetailsService.getFirst();
|
|
25710
25720
|
}
|
|
25711
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25712
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25721
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25722
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessResolver, providedIn: 'root' }); }
|
|
25713
25723
|
}
|
|
25714
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25724
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessResolver, decorators: [{
|
|
25715
25725
|
type: Injectable,
|
|
25716
25726
|
args: [{ providedIn: 'root' }]
|
|
25717
25727
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
|
@@ -25723,10 +25733,10 @@ class SoleDetailsResolver {
|
|
|
25723
25733
|
resolve() {
|
|
25724
25734
|
return this.soleDetails.getFirst();
|
|
25725
25735
|
}
|
|
25726
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25727
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25736
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25737
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsResolver, providedIn: 'root' }); }
|
|
25728
25738
|
}
|
|
25729
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25739
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsResolver, decorators: [{
|
|
25730
25740
|
type: Injectable,
|
|
25731
25741
|
args: [{ providedIn: 'root' }]
|
|
25732
25742
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
|
@@ -26477,10 +26487,10 @@ class UniqueEmailValidator {
|
|
|
26477
26487
|
validate(control) {
|
|
26478
26488
|
return this.userService.search(control.value).pipe(map(user => user ? { emailIsUsed: true } : null));
|
|
26479
26489
|
}
|
|
26480
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
26481
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
26490
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UniqueEmailValidator, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
26491
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UniqueEmailValidator, providedIn: 'root' }); }
|
|
26482
26492
|
}
|
|
26483
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
26493
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UniqueEmailValidator, decorators: [{
|
|
26484
26494
|
type: Injectable,
|
|
26485
26495
|
args: [{ providedIn: 'root' }]
|
|
26486
26496
|
}], ctorParameters: () => [{ type: UserService }] });
|
|
@@ -26996,10 +27006,10 @@ class ClientMovementForm extends AbstractForm {
|
|
|
26996
27006
|
firmBranch: new FormControl(clientMovement.firmBranch, [Validators.required]),
|
|
26997
27007
|
}, clientMovement);
|
|
26998
27008
|
}
|
|
26999
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
27000
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
27009
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementForm, deps: [{ token: ClientMovement }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
27010
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementForm, providedIn: 'root' }); }
|
|
27001
27011
|
}
|
|
27002
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
27012
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementForm, decorators: [{
|
|
27003
27013
|
type: Injectable,
|
|
27004
27014
|
args: [{
|
|
27005
27015
|
providedIn: 'root'
|
|
@@ -27012,10 +27022,10 @@ class EmployeeDetailsForm extends AbstractForm {
|
|
|
27012
27022
|
firmBranches: new FormControl(employeeDetails.firmBranches, [Validators.required]),
|
|
27013
27023
|
}, employeeDetails);
|
|
27014
27024
|
}
|
|
27015
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
27016
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
27025
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeDetailsForm, deps: [{ token: EmployeeDetails }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
27026
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeDetailsForm, providedIn: 'root' }); }
|
|
27017
27027
|
}
|
|
27018
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
27028
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeDetailsForm, decorators: [{
|
|
27019
27029
|
type: Injectable,
|
|
27020
27030
|
args: [{
|
|
27021
27031
|
providedIn: 'root'
|
|
@@ -27276,6 +27286,16 @@ class SoleBusinessAllocationsForm extends UntypedFormArray {
|
|
|
27276
27286
|
}
|
|
27277
27287
|
}
|
|
27278
27288
|
|
|
27289
|
+
class SoleBusinessCloseForm extends AbstractForm {
|
|
27290
|
+
constructor(business = plainToClass(SoleBusiness, {})) {
|
|
27291
|
+
super({
|
|
27292
|
+
closeDate: new FormControl(business.closeDate, [maxDateValidator(new Date(), 'You cannot set a business close date in future.'), Validators.required]),
|
|
27293
|
+
closeReason: new FormControl(business.closeReason),
|
|
27294
|
+
}, business);
|
|
27295
|
+
this.business = business;
|
|
27296
|
+
}
|
|
27297
|
+
}
|
|
27298
|
+
|
|
27279
27299
|
class SoleBusinessLossForm extends AbstractForm {
|
|
27280
27300
|
constructor(loss, profit) {
|
|
27281
27301
|
super({
|
|
@@ -28237,9 +28257,7 @@ class PropertyEditForm extends AbstractForm {
|
|
|
28237
28257
|
|
|
28238
28258
|
class PropertyValuationForm extends AbstractForm {
|
|
28239
28259
|
constructor(valuation = plainToClass(PropertyValuation, {}), property) {
|
|
28240
|
-
|
|
28241
|
-
// const marketValue = valuation.id ? valuation.marketValue ?? property?.marketValue : 0;
|
|
28242
|
-
const marketValue = valuation.marketValue ?? property?.marketValue;
|
|
28260
|
+
const marketValue = property?.isForeign() && !valuation.id ? 0 : valuation.marketValue ?? property?.marketValue;
|
|
28243
28261
|
super({
|
|
28244
28262
|
// corelogic available only for new valuations if request cooldown has passed
|
|
28245
28263
|
isCorelogic: new FormControl(property?.isCorelogicAvailable() && !valuation.id),
|
|
@@ -29525,12 +29543,7 @@ class TransactionBaseForm extends AbstractForm {
|
|
|
29525
29543
|
else {
|
|
29526
29544
|
this.get('claimPercent').disable();
|
|
29527
29545
|
}
|
|
29528
|
-
|
|
29529
|
-
let claimPercent = chartAccounts.taxablePercent;
|
|
29530
|
-
if (chartAccounts.isPropertyExpense() && chartAccounts.id !== ChartAccountsListEnum.PLATFORM_FEES) {
|
|
29531
|
-
claimPercent *= this.get('property').value.claimCoefficient;
|
|
29532
|
-
}
|
|
29533
|
-
this.get('claimPercent').setValue(claimPercent);
|
|
29546
|
+
this.get('claimPercent').setValue(chartAccounts.taxablePercent);
|
|
29534
29547
|
}
|
|
29535
29548
|
}
|
|
29536
29549
|
|
|
@@ -30524,5 +30537,5 @@ var MessagesEnum;
|
|
|
30524
30537
|
* Generated bundle index. Do not edit.
|
|
30525
30538
|
*/
|
|
30526
30539
|
|
|
30527
|
-
export { ADBLOCK_ERROR_HTML, ADBLOCK_ERROR_HTML_VALUE, AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockDetectorService, Address, AddressForm, AddressSuggestion, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AppPercentPipe, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AussieAppointment, AussieAppointmentForm, AussieBroker, AussieConfirmationForm, AussieService, AussieStore, AussieStoreForm, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountForm, BankAccountImportForm, BankAccountMessagesEnum, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsFilterForm, BankAccountsImportForm, BankConnection, BankConnectionCollection, BankConnectionForm, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionComment, BankTransactionCommentForm, BankTransactionCommentMessagesEnum, BankTransactionCommentService, BankTransactionImport, BankTransactionImportCollection, BankTransactionImportMessagesEnum, BankTransactionImportService, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BasiqUser, BasiqUserService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetCashFlowItem, BudgetCollection, BudgetForm, BudgetMessagesEnum, BudgetMetadataInterface, BudgetRule, BudgetRuleCollection, BudgetRuleForm, BudgetRuleItem, BudgetRuleItemCollection, BudgetRuleService, BudgetService, BudgetTypeEnum, BusinessChartAccountsEnum, BusinessDepreciationMethod, BusinessDepreciationMethodEnum, BusinessDepreciationMethodForm, BusinessDepreciationMethodService, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, COLORS, CalculationFormItem, CalculationFormTypeEnum, CalendarEvent, CalendarEventCollection, CalendarEventTypeEnum, CalendarReminder, CalendarReminderCollection, CalendarReminderForm, CalendarReminderMessagesEnum, CalendarReminderService, CalendarReminderTypeEnum, CalendarViewEnum, CapitalLoss, CapitalLossForm, CapitalLossMessagesEnum, CapitalLossService, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueCollection, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatFilterForm, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientCouponService, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteCollection, ClientInviteForm, ClientInviteMessages, ClientInvitePutForm, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementForm, ClientMovementMessagesEnum, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CollectionForm, CoreModule, CorelogicMessagesEnum, CorelogicService, Country, CountryService, Currency, CurrencyService, CurrencyTypeEnum, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DailyFrequencyEnum, DashboardSettings, DashboardSettingsForm, DashboardSettingsService, DateAmountDictionary, DateFormatsEnum, DateRange, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpRateEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderCollection, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EXPENSE_CATEGORY_BY_TYPE, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExchangeRate, ExchangeRateService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialGoal, FinancialGoalCollection, FinancialGoalFilterForm, FinancialGoalForm, FinancialGoalMessagesEnum, FinancialGoalService, FinancialGoalStatusEnum, FinancialGoalTypeEnum, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GooglePlaceService, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingCostAdjustment, HoldingCostAdjustmentForm, HoldingCostAdjustmentMessagesEnum, HoldingCostAdjustmentService, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTaxStatement, HoldingTaxStatementForm, HoldingTaxStatementItem, HoldingTaxStatementItemForm, HoldingTaxStatementMessagesEnum, HoldingTaxStatementPayer, HoldingTaxStatementPayerForm, HoldingTaxStatementPayerMessagesEnum, HoldingTaxStatementPayerService, HoldingTaxStatementService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportCollection, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeReportItem, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypePosition, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, INCOME_CATEGORY_BY_TYPE, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, InvoiceTransactionsService, JsPdf, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, MoneyCalendarEvent, MoneyCalendarEventCollection, MoneyScheduleFilterForm, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, MyTaxBusinessDetails, MyTaxBusinessDetailsForm, MyTaxBusinessIncome, MyTaxBusinessIncomeForm, MyTaxBusinessIncomeOrLossesForm, MyTaxBusinessLosses, MyTaxBusinessLossesForm, MyTaxCgt, MyTaxCgtForm, MyTaxDeductions, MyTaxDeductionsForm, MyTaxDividends, MyTaxDividendsForm, MyTaxEstimate, MyTaxIncomeStatements, MyTaxIncomeStatementsForm, MyTaxIncomeTests, MyTaxIncomeTestsForm, MyTaxInterest, MyTaxInterestForm, MyTaxLosses, MyTaxLossesForm, MyTaxMedicareForm, MyTaxOffsets, MyTaxOffsetsForm, MyTaxOtherIncome, MyTaxOtherIncomeForm, MyTaxPartnershipsAndTrusts, MyTaxPartnershipsAndTrustsForm, MyTaxRent, MyTaxRentForm, Notification, Occupation, OccupationService, PALETTE_EQUITY, PALETTE_PRIMARY, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, PriorDepreciationService, PriorTransactionService, Property, PropertyAddForm, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareForm, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationCollection, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, REPORTS, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, RelativeDatePipe, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestMessagesEnum, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceEnum, ServicePriceOldEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SharesightDetails, SharesightDetailsMessagesEnum, SharesightDetailsService, SharesightPortfolio, SharesightPortfolioMessages, SharesightPortfolioService, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossCollection, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactItem, SoleContactItemCollection, SoleContactMessagesEnum, SoleContactService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SoleInvoiceTypeEnum, SolePlItem, SolePlItemCollection, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionCollection, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewFilterForm, TaxReviewFilterStatusEnum, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, TimezoneEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseCollection, TransactionBaseFilter, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReportItem, TransactionReportItemCollection, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TreeNodeData, USER_ROLES, USER_WORK_POSITION, UniqueEmailValidator, User, UserCollection, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeCollection, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserForm, UserInviteForm, UserMedicareExemptionEnum, UserMessagesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimForm, VehicleClaimMethodEnum, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, YoutubeVideosEnum, atLeastOneCheckedValidator, atLeastOneEnabledValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, compareWithControlValidator, conditionalValidator, createDate, currentFinYearValidator, dateRangeValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, recurringDates, replace, sort, sortDeep, toArray };
|
|
30540
|
+
export { ADBLOCK_ERROR_HTML, ADBLOCK_ERROR_HTML_VALUE, AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockDetectorService, Address, AddressForm, AddressSuggestion, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AppPercentPipe, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AussieAppointment, AussieAppointmentForm, AussieBroker, AussieConfirmationForm, AussieService, AussieStore, AussieStoreForm, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountForm, BankAccountImportForm, BankAccountMessagesEnum, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsFilterForm, BankAccountsImportForm, BankConnection, BankConnectionCollection, BankConnectionForm, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionComment, BankTransactionCommentForm, BankTransactionCommentMessagesEnum, BankTransactionCommentService, BankTransactionImport, BankTransactionImportCollection, BankTransactionImportMessagesEnum, BankTransactionImportService, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BasiqUser, BasiqUserService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetCashFlowItem, BudgetCollection, BudgetForm, BudgetMessagesEnum, BudgetMetadataInterface, BudgetRule, BudgetRuleCollection, BudgetRuleForm, BudgetRuleItem, BudgetRuleItemCollection, BudgetRuleService, BudgetService, BudgetTypeEnum, BusinessChartAccountsEnum, BusinessDepreciationMethod, BusinessDepreciationMethodEnum, BusinessDepreciationMethodForm, BusinessDepreciationMethodService, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, COLORS, CalculationFormItem, CalculationFormTypeEnum, CalendarEvent, CalendarEventCollection, CalendarEventTypeEnum, CalendarReminder, CalendarReminderCollection, CalendarReminderForm, CalendarReminderMessagesEnum, CalendarReminderService, CalendarReminderTypeEnum, CalendarViewEnum, CapitalLoss, CapitalLossForm, CapitalLossMessagesEnum, CapitalLossService, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueCollection, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatFilterForm, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientCouponService, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteCollection, ClientInviteForm, ClientInviteMessages, ClientInvitePutForm, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementForm, ClientMovementMessagesEnum, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CollectionForm, CoreModule, CorelogicMessagesEnum, CorelogicService, Country, CountryService, Currency, CurrencyService, CurrencyTypeEnum, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DailyFrequencyEnum, DashboardSettings, DashboardSettingsForm, DashboardSettingsService, DateAmountDictionary, DateFormatsEnum, DateRange, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpRateEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderCollection, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EXPENSE_CATEGORY_BY_TYPE, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExchangeRate, ExchangeRateService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialGoal, FinancialGoalCollection, FinancialGoalFilterForm, FinancialGoalForm, FinancialGoalMessagesEnum, FinancialGoalService, FinancialGoalStatusEnum, FinancialGoalTypeEnum, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GooglePlaceService, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingCostAdjustment, HoldingCostAdjustmentForm, HoldingCostAdjustmentMessagesEnum, HoldingCostAdjustmentService, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTaxStatement, HoldingTaxStatementForm, HoldingTaxStatementItem, HoldingTaxStatementItemForm, HoldingTaxStatementMessagesEnum, HoldingTaxStatementPayer, HoldingTaxStatementPayerForm, HoldingTaxStatementPayerMessagesEnum, HoldingTaxStatementPayerService, HoldingTaxStatementService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportCollection, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeReportItem, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypePosition, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, INCOME_CATEGORY_BY_TYPE, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, InvoiceTransactionsService, JsPdf, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, MoneyCalendarEvent, MoneyCalendarEventCollection, MoneyScheduleFilterForm, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, MyTaxBusinessDetails, MyTaxBusinessDetailsForm, MyTaxBusinessIncome, MyTaxBusinessIncomeForm, MyTaxBusinessIncomeOrLossesForm, MyTaxBusinessLosses, MyTaxBusinessLossesForm, MyTaxCgt, MyTaxCgtForm, MyTaxDeductions, MyTaxDeductionsForm, MyTaxDividends, MyTaxDividendsForm, MyTaxEstimate, MyTaxIncomeStatements, MyTaxIncomeStatementsForm, MyTaxIncomeTests, MyTaxIncomeTestsForm, MyTaxInterest, MyTaxInterestForm, MyTaxLosses, MyTaxLossesForm, MyTaxMedicareForm, MyTaxOffsets, MyTaxOffsetsForm, MyTaxOtherIncome, MyTaxOtherIncomeForm, MyTaxPartnershipsAndTrusts, MyTaxPartnershipsAndTrustsForm, MyTaxRent, MyTaxRentForm, Notification, Occupation, OccupationService, PALETTE_EQUITY, PALETTE_PRIMARY, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, PriorDepreciationService, PriorTransactionService, Property, PropertyAddForm, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareForm, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationCollection, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, REPORTS, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, RelativeDatePipe, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestMessagesEnum, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceEnum, ServicePriceOldEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SharesightDetails, SharesightDetailsMessagesEnum, SharesightDetailsService, SharesightPortfolio, SharesightPortfolioMessages, SharesightPortfolioService, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessCloseForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossCollection, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactItem, SoleContactItemCollection, SoleContactMessagesEnum, SoleContactService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SoleInvoiceTypeEnum, SolePlItem, SolePlItemCollection, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionCollection, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewFilterForm, TaxReviewFilterStatusEnum, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, TimezoneEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseCollection, TransactionBaseFilter, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReportItem, TransactionReportItemCollection, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TreeNodeData, USER_ROLES, USER_WORK_POSITION, UniqueEmailValidator, User, UserCollection, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeCollection, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserForm, UserInviteForm, UserMedicareExemptionEnum, UserMessagesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimForm, VehicleClaimMethodEnum, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, YoutubeVideosEnum, atLeastOneCheckedValidator, atLeastOneEnabledValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, compareWithControlValidator, conditionalValidator, createDate, currentFinYearValidator, dateRangeValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, recurringDates, replace, sort, sortDeep, toArray };
|
|
30528
30541
|
//# sourceMappingURL=taxtank-core.mjs.map
|