taxtank-core 2.0.73 → 2.0.74
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/fesm2022/taxtank-core-common.mjs +20 -20
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +483 -449
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +27 -9
- package/package.json +1 -1
|
@@ -100,10 +100,10 @@ class AddressService {
|
|
|
100
100
|
}
|
|
101
101
|
return this.countriesSubject.asObservable();
|
|
102
102
|
}
|
|
103
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
104
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
103
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AddressService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
104
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AddressService, providedIn: 'root' }); }
|
|
105
105
|
}
|
|
106
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AddressService, decorators: [{
|
|
107
107
|
type: Injectable,
|
|
108
108
|
args: [{
|
|
109
109
|
providedIn: 'root'
|
|
@@ -127,10 +127,10 @@ class PdfService {
|
|
|
127
127
|
formData.append('landscape', landscape ? '1' : '0');
|
|
128
128
|
return this.http.post(`${this.environment.apiV2}/pdf/html`, formData, { responseType: 'blob' });
|
|
129
129
|
}
|
|
130
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
131
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
130
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
131
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfService, providedIn: 'root' }); }
|
|
132
132
|
}
|
|
133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfService, decorators: [{
|
|
134
134
|
type: Injectable,
|
|
135
135
|
args: [{
|
|
136
136
|
providedIn: 'root'
|
|
@@ -8596,6 +8596,21 @@ class TransactionReportItem {
|
|
|
8596
8596
|
}
|
|
8597
8597
|
}
|
|
8598
8598
|
|
|
8599
|
+
class BudgetReportItem {
|
|
8600
|
+
constructor(rules, transactions) {
|
|
8601
|
+
this.category = ChartAccountsCategoryEnum[rules.first.chartAccounts.category];
|
|
8602
|
+
this.chartAccounts = rules.first.chartAccounts.name;
|
|
8603
|
+
this.forecast = rules.sumBy('amount');
|
|
8604
|
+
this.actual = Math.abs(transactions.sumBy('amount'));
|
|
8605
|
+
this.difference = this.forecast - this.actual;
|
|
8606
|
+
this.differencePercent = round(this.actual * 100 / this.forecast, 2);
|
|
8607
|
+
this.isIncome = rules.first.chartAccounts.isIncome();
|
|
8608
|
+
}
|
|
8609
|
+
onTrack() {
|
|
8610
|
+
return (this.isIncome && this.difference <= 0) || (!this.isIncome && this.difference >= 0);
|
|
8611
|
+
}
|
|
8612
|
+
}
|
|
8613
|
+
|
|
8599
8614
|
/**
|
|
8600
8615
|
* Base collection to work with property report items
|
|
8601
8616
|
*/
|
|
@@ -8688,6 +8703,21 @@ class TransactionReportItemCollection extends Collection {
|
|
|
8688
8703
|
}
|
|
8689
8704
|
}
|
|
8690
8705
|
|
|
8706
|
+
class BudgetReportItemCollection extends Collection {
|
|
8707
|
+
static create(rules, transactions) {
|
|
8708
|
+
const collection = new BudgetReportItemCollection();
|
|
8709
|
+
const rulesByChartAccounts = rules.groupBy('chartAccounts.id');
|
|
8710
|
+
const transactionsByChartAccounts = transactions.groupBy('chartAccounts.id');
|
|
8711
|
+
rulesByChartAccounts.keys.forEach(key => {
|
|
8712
|
+
collection.push(new BudgetReportItem(rulesByChartAccounts.get(key), transactionsByChartAccounts.get(key)));
|
|
8713
|
+
});
|
|
8714
|
+
return collection;
|
|
8715
|
+
}
|
|
8716
|
+
onTrack() {
|
|
8717
|
+
return (this.first.isIncome && this.sumBy('difference') <= 0) || (!this.first.isIncome && this.sumBy('difference') >= 0);
|
|
8718
|
+
}
|
|
8719
|
+
}
|
|
8720
|
+
|
|
8691
8721
|
class SoleBusinessLossCollection extends Collection {
|
|
8692
8722
|
/**
|
|
8693
8723
|
* Business loss applied in current year, includes previous year losses and current year losses for businesses matching offset rule
|
|
@@ -9328,6 +9358,10 @@ class BudgetRuleCollection extends Collection {
|
|
|
9328
9358
|
get incomes() {
|
|
9329
9359
|
return this.filter(rule => rule.chartAccounts.isIncome());
|
|
9330
9360
|
}
|
|
9361
|
+
filterByProperties(properties) {
|
|
9362
|
+
const propertyIds = properties.map(property => property.id);
|
|
9363
|
+
return this.filter(rule => propertyIds.includes(rule.property?.id));
|
|
9364
|
+
}
|
|
9331
9365
|
}
|
|
9332
9366
|
|
|
9333
9367
|
class AllocationGroupCollection extends Collection {
|
|
@@ -11861,10 +11895,10 @@ class EventDispatcherService {
|
|
|
11861
11895
|
dispatch2(event) {
|
|
11862
11896
|
this.eventSubject2.next(event);
|
|
11863
11897
|
}
|
|
11864
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
11865
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
11898
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
11899
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EventDispatcherService, providedIn: 'root' }); }
|
|
11866
11900
|
}
|
|
11867
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
11901
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EventDispatcherService, decorators: [{
|
|
11868
11902
|
type: Injectable,
|
|
11869
11903
|
args: [{
|
|
11870
11904
|
providedIn: 'root'
|
|
@@ -11899,10 +11933,10 @@ class SseService {
|
|
|
11899
11933
|
})
|
|
11900
11934
|
.pipe(map((messageEvent) => JSON.parse(messageEvent.data)));
|
|
11901
11935
|
}
|
|
11902
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
11903
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
11936
|
+
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 }); }
|
|
11937
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SseService, providedIn: 'root' }); }
|
|
11904
11938
|
}
|
|
11905
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
11939
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SseService, decorators: [{
|
|
11906
11940
|
type: Injectable,
|
|
11907
11941
|
args: [{
|
|
11908
11942
|
providedIn: 'root'
|
|
@@ -11990,10 +12024,10 @@ class DataService {
|
|
|
11990
12024
|
setCache(data) {
|
|
11991
12025
|
this.cache = this.createCollectionInstance(this.collectionClass, data);
|
|
11992
12026
|
}
|
|
11993
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
11994
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
12027
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DataService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12028
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DataService, providedIn: 'root' }); }
|
|
11995
12029
|
}
|
|
11996
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
12030
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DataService, decorators: [{
|
|
11997
12031
|
type: Injectable,
|
|
11998
12032
|
args: [{
|
|
11999
12033
|
providedIn: 'root'
|
|
@@ -12061,10 +12095,10 @@ class ToastService {
|
|
|
12061
12095
|
message,
|
|
12062
12096
|
}));
|
|
12063
12097
|
}
|
|
12064
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
12065
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
12098
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12099
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ToastService, providedIn: 'root' }); }
|
|
12066
12100
|
}
|
|
12067
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
12101
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ToastService, decorators: [{
|
|
12068
12102
|
type: Injectable,
|
|
12069
12103
|
args: [{
|
|
12070
12104
|
providedIn: 'root'
|
|
@@ -12431,10 +12465,10 @@ let RestService$1 = class RestService extends DataService {
|
|
|
12431
12465
|
this.handleResponse([change.model], change.method);
|
|
12432
12466
|
});
|
|
12433
12467
|
}
|
|
12434
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
12435
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
12468
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12469
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
|
12436
12470
|
};
|
|
12437
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
12471
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService$1, decorators: [{
|
|
12438
12472
|
type: Injectable,
|
|
12439
12473
|
args: [{
|
|
12440
12474
|
providedIn: 'root'
|
|
@@ -12574,10 +12608,10 @@ class BankAccountService extends RestService$1 {
|
|
|
12574
12608
|
}
|
|
12575
12609
|
});
|
|
12576
12610
|
}
|
|
12577
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
12578
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
12611
|
+
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 }); }
|
|
12612
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountService, providedIn: 'root' }); }
|
|
12579
12613
|
}
|
|
12580
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
12614
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountService, decorators: [{
|
|
12581
12615
|
type: Injectable,
|
|
12582
12616
|
args: [{
|
|
12583
12617
|
providedIn: 'root'
|
|
@@ -12682,10 +12716,10 @@ class BankConnectionService extends RestService$1 {
|
|
|
12682
12716
|
}
|
|
12683
12717
|
});
|
|
12684
12718
|
}
|
|
12685
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
12686
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
12719
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankConnectionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12720
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankConnectionService, providedIn: 'root' }); }
|
|
12687
12721
|
}
|
|
12688
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
12722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankConnectionService, decorators: [{
|
|
12689
12723
|
type: Injectable,
|
|
12690
12724
|
args: [{
|
|
12691
12725
|
providedIn: 'root'
|
|
@@ -12751,10 +12785,10 @@ class BankTransactionService extends RestService$1 {
|
|
|
12751
12785
|
}
|
|
12752
12786
|
});
|
|
12753
12787
|
}
|
|
12754
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
12755
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
12788
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12789
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionService, providedIn: 'root' }); }
|
|
12756
12790
|
}
|
|
12757
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
12791
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionService, decorators: [{
|
|
12758
12792
|
type: Injectable,
|
|
12759
12793
|
args: [{
|
|
12760
12794
|
providedIn: 'root'
|
|
@@ -12788,10 +12822,10 @@ class BasiqTokenService extends RestService$1 {
|
|
|
12788
12822
|
const now = new Date().getTime();
|
|
12789
12823
|
return new BasiqToken(tokenResponse['access_token'], new Date(now + tokenResponse['expires_in'] * 1000));
|
|
12790
12824
|
}
|
|
12791
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
12792
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
12825
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12826
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenService, providedIn: 'root' }); }
|
|
12793
12827
|
}
|
|
12794
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
12828
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenService, decorators: [{
|
|
12795
12829
|
type: Injectable,
|
|
12796
12830
|
args: [{
|
|
12797
12831
|
providedIn: 'root'
|
|
@@ -12933,10 +12967,10 @@ class BasiqService extends RestService$1 {
|
|
|
12933
12967
|
}
|
|
12934
12968
|
});
|
|
12935
12969
|
}
|
|
12936
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
12937
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
12970
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: BankConnectionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12971
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, providedIn: 'root' }); }
|
|
12938
12972
|
}
|
|
12939
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
12973
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, decorators: [{
|
|
12940
12974
|
type: Injectable,
|
|
12941
12975
|
args: [{
|
|
12942
12976
|
providedIn: 'root'
|
|
@@ -12964,10 +12998,10 @@ class BankTransactionCommentService extends RestService$1 {
|
|
|
12964
12998
|
this.endpointUri = 'bank-transaction-comments';
|
|
12965
12999
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
12966
13000
|
}
|
|
12967
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
12968
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13001
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionCommentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13002
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionCommentService, providedIn: 'root' }); }
|
|
12969
13003
|
}
|
|
12970
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13004
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankTransactionCommentService, decorators: [{
|
|
12971
13005
|
type: Injectable,
|
|
12972
13006
|
args: [{
|
|
12973
13007
|
providedIn: 'root'
|
|
@@ -12993,10 +13027,10 @@ class BankService extends RestService$1 {
|
|
|
12993
13027
|
this.endpointUri = 'banks';
|
|
12994
13028
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
12995
13029
|
}
|
|
12996
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
12997
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13030
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13031
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankService, providedIn: 'root' }); }
|
|
12998
13032
|
}
|
|
12999
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13033
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankService, decorators: [{
|
|
13000
13034
|
type: Injectable,
|
|
13001
13035
|
args: [{
|
|
13002
13036
|
providedIn: 'root'
|
|
@@ -13011,10 +13045,10 @@ class BudgetService extends RestService$1 {
|
|
|
13011
13045
|
this.endpointUri = 'budgets';
|
|
13012
13046
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
13013
13047
|
}
|
|
13014
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13015
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13048
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13049
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetService, providedIn: 'root' }); }
|
|
13016
13050
|
}
|
|
13017
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13051
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetService, decorators: [{
|
|
13018
13052
|
type: Injectable,
|
|
13019
13053
|
args: [{
|
|
13020
13054
|
providedIn: 'root'
|
|
@@ -13037,10 +13071,10 @@ class BudgetRuleService extends RestService$1 {
|
|
|
13037
13071
|
this.endpointUri = 'budget-rules';
|
|
13038
13072
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
13039
13073
|
}
|
|
13040
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13041
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13074
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13075
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetRuleService, providedIn: 'root' }); }
|
|
13042
13076
|
}
|
|
13043
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13077
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BudgetRuleService, decorators: [{
|
|
13044
13078
|
type: Injectable,
|
|
13045
13079
|
args: [{
|
|
13046
13080
|
providedIn: 'root'
|
|
@@ -13065,10 +13099,10 @@ class FinancialGoalService extends RestService$1 {
|
|
|
13065
13099
|
complete(goal) {
|
|
13066
13100
|
return this.put(Object.assign({}, goal, { status: FinancialGoalStatusEnum.COMPLETE, finalValue: goal.bankAccount.currentBalance }));
|
|
13067
13101
|
}
|
|
13068
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13069
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13102
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialGoalService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13103
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialGoalService, providedIn: 'root' }); }
|
|
13070
13104
|
}
|
|
13071
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialGoalService, decorators: [{
|
|
13072
13106
|
type: Injectable,
|
|
13073
13107
|
args: [{
|
|
13074
13108
|
providedIn: 'root'
|
|
@@ -13095,10 +13129,10 @@ class ChartAccountsDepreciationService extends RestService$1 {
|
|
|
13095
13129
|
this.collectionClass = Collection;
|
|
13096
13130
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
13097
13131
|
}
|
|
13098
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13099
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13132
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13133
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' }); }
|
|
13100
13134
|
}
|
|
13101
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13135
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
|
|
13102
13136
|
type: Injectable,
|
|
13103
13137
|
args: [{
|
|
13104
13138
|
providedIn: 'root'
|
|
@@ -13137,10 +13171,10 @@ class ChartAccountsService extends RestService$1 {
|
|
|
13137
13171
|
return headings;
|
|
13138
13172
|
}));
|
|
13139
13173
|
}
|
|
13140
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13141
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13174
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13175
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsService, providedIn: 'root' }); }
|
|
13142
13176
|
}
|
|
13143
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13177
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsService, decorators: [{
|
|
13144
13178
|
type: Injectable,
|
|
13145
13179
|
args: [{
|
|
13146
13180
|
providedIn: 'root'
|
|
@@ -13224,10 +13258,10 @@ class ChatService extends RestService$1 {
|
|
|
13224
13258
|
this.setCache(cache, true);
|
|
13225
13259
|
}, ['post']);
|
|
13226
13260
|
}
|
|
13227
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13228
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13261
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChatService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13262
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChatService, providedIn: 'root' }); }
|
|
13229
13263
|
}
|
|
13230
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13264
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChatService, decorators: [{
|
|
13231
13265
|
type: Injectable,
|
|
13232
13266
|
args: [{
|
|
13233
13267
|
providedIn: 'root'
|
|
@@ -13257,10 +13291,10 @@ class MessageService extends RestService$1 {
|
|
|
13257
13291
|
getUnreadChatsAmount() {
|
|
13258
13292
|
return this.get().pipe(map((messages) => messages.getUnreadChatsAmount()));
|
|
13259
13293
|
}
|
|
13260
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13261
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13294
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13295
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageService, providedIn: 'root' }); }
|
|
13262
13296
|
}
|
|
13263
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13297
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageService, decorators: [{
|
|
13264
13298
|
type: Injectable,
|
|
13265
13299
|
args: [{
|
|
13266
13300
|
providedIn: 'root'
|
|
@@ -13329,10 +13363,10 @@ class MessageDocumentService extends RestService$1 {
|
|
|
13329
13363
|
addBatch(chatId, files) {
|
|
13330
13364
|
return combineLatest(files.map((file) => this.add(chatId, file))).pipe(map((docsBase) => docsBase.map((docBase) => plainToClass(MessageDocument, docBase))));
|
|
13331
13365
|
}
|
|
13332
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13333
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13366
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageDocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13367
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageDocumentService, providedIn: 'root' }); }
|
|
13334
13368
|
}
|
|
13335
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13369
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MessageDocumentService, decorators: [{
|
|
13336
13370
|
type: Injectable,
|
|
13337
13371
|
args: [{
|
|
13338
13372
|
providedIn: 'root'
|
|
@@ -13427,10 +13461,10 @@ class DepreciationService extends RestService$1 {
|
|
|
13427
13461
|
this.refreshCache();
|
|
13428
13462
|
});
|
|
13429
13463
|
}
|
|
13430
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13431
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13464
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13465
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationService, providedIn: 'root' }); }
|
|
13432
13466
|
}
|
|
13433
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13467
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationService, decorators: [{
|
|
13434
13468
|
type: Injectable,
|
|
13435
13469
|
args: [{
|
|
13436
13470
|
providedIn: 'root'
|
|
@@ -13452,10 +13486,10 @@ class DepreciationCapitalProjectService extends RestService$1 {
|
|
|
13452
13486
|
this.endpointUri = 'depreciation-capital-projects';
|
|
13453
13487
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
13454
13488
|
}
|
|
13455
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13456
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13489
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationCapitalProjectService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13490
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' }); }
|
|
13457
13491
|
}
|
|
13458
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13492
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
|
|
13459
13493
|
type: Injectable,
|
|
13460
13494
|
args: [{
|
|
13461
13495
|
providedIn: 'root'
|
|
@@ -13481,10 +13515,10 @@ class DocumentFolderService extends RestService$1 {
|
|
|
13481
13515
|
this.modelClass = DocumentFolder;
|
|
13482
13516
|
this.disabledMethods = ['deleteBatch', 'postBatch', 'putBatch'];
|
|
13483
13517
|
}
|
|
13484
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13485
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13518
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13519
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentFolderService, providedIn: 'root' }); }
|
|
13486
13520
|
}
|
|
13487
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13521
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentFolderService, decorators: [{
|
|
13488
13522
|
type: Injectable,
|
|
13489
13523
|
args: [{
|
|
13490
13524
|
providedIn: 'root'
|
|
@@ -13509,10 +13543,10 @@ class DocumentService extends RestService$1 {
|
|
|
13509
13543
|
postFiles(folder, files) {
|
|
13510
13544
|
return this.postParallel(files.map(file => plainToClass(Document, { folder, file })));
|
|
13511
13545
|
}
|
|
13512
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13513
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13546
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13547
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentService, providedIn: 'root' }); }
|
|
13514
13548
|
}
|
|
13515
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13549
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: DocumentService, decorators: [{
|
|
13516
13550
|
type: Injectable,
|
|
13517
13551
|
args: [{
|
|
13518
13552
|
providedIn: 'root'
|
|
@@ -13597,10 +13631,10 @@ class FacebookService {
|
|
|
13597
13631
|
});
|
|
13598
13632
|
});
|
|
13599
13633
|
}
|
|
13600
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13601
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13634
|
+
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 }); }
|
|
13635
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FacebookService, providedIn: 'root' }); }
|
|
13602
13636
|
}
|
|
13603
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13637
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FacebookService, decorators: [{
|
|
13604
13638
|
type: Injectable,
|
|
13605
13639
|
args: [{
|
|
13606
13640
|
providedIn: 'root'
|
|
@@ -13667,10 +13701,10 @@ class GoogleService {
|
|
|
13667
13701
|
logout() {
|
|
13668
13702
|
google.accounts.id.disableAutoSelect();
|
|
13669
13703
|
}
|
|
13670
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13671
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13704
|
+
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 }); }
|
|
13705
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GoogleService, providedIn: 'root' }); }
|
|
13672
13706
|
}
|
|
13673
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13707
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: GoogleService, decorators: [{
|
|
13674
13708
|
type: Injectable,
|
|
13675
13709
|
args: [{
|
|
13676
13710
|
providedIn: 'root'
|
|
@@ -13702,10 +13736,10 @@ class FileService extends RestService$1 {
|
|
|
13702
13736
|
download(file) {
|
|
13703
13737
|
return this.http.get(`${this.apiUrl}/${file.id}/download`, { responseType: 'blob' });
|
|
13704
13738
|
}
|
|
13705
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13706
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13739
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13740
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FileService, providedIn: 'root' }); }
|
|
13707
13741
|
}
|
|
13708
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13742
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FileService, decorators: [{
|
|
13709
13743
|
type: Injectable,
|
|
13710
13744
|
args: [{
|
|
13711
13745
|
providedIn: 'root'
|
|
@@ -13795,10 +13829,10 @@ class ClientInviteService extends RestService$1 {
|
|
|
13795
13829
|
}
|
|
13796
13830
|
});
|
|
13797
13831
|
}
|
|
13798
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13799
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13832
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientInviteService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13833
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientInviteService, providedIn: 'root' }); }
|
|
13800
13834
|
}
|
|
13801
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13835
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientInviteService, decorators: [{
|
|
13802
13836
|
type: Injectable,
|
|
13803
13837
|
args: [{
|
|
13804
13838
|
providedIn: 'root'
|
|
@@ -13888,10 +13922,10 @@ class ClientMovementService extends RestService$1 {
|
|
|
13888
13922
|
// this.updateCache([clientMovement], 'delete');
|
|
13889
13923
|
}));
|
|
13890
13924
|
}
|
|
13891
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13892
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13925
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13926
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementService, providedIn: 'root' }); }
|
|
13893
13927
|
}
|
|
13894
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13928
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementService, decorators: [{
|
|
13895
13929
|
type: Injectable,
|
|
13896
13930
|
args: [{
|
|
13897
13931
|
providedIn: 'root'
|
|
@@ -13952,10 +13986,10 @@ class EmployeeService extends RestService$1 {
|
|
|
13952
13986
|
index === -1 ? employee.roles.push(role) : employee.roles.splice(index, 1);
|
|
13953
13987
|
return super.put(employee, `${this.environment.apiV2}/${this.endpointUri}/${employee.id}`);
|
|
13954
13988
|
}
|
|
13955
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
13956
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
13989
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13990
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeService, providedIn: 'root' }); }
|
|
13957
13991
|
}
|
|
13958
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
13992
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeService, decorators: [{
|
|
13959
13993
|
type: Injectable,
|
|
13960
13994
|
args: [{
|
|
13961
13995
|
providedIn: 'root'
|
|
@@ -14016,10 +14050,10 @@ class EmployeeInviteService extends RestService$1 {
|
|
|
14016
14050
|
return updatedInvite;
|
|
14017
14051
|
}));
|
|
14018
14052
|
}
|
|
14019
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
14020
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
14053
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14054
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' }); }
|
|
14021
14055
|
}
|
|
14022
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
14056
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeInviteService, decorators: [{
|
|
14023
14057
|
type: Injectable,
|
|
14024
14058
|
args: [{
|
|
14025
14059
|
providedIn: 'root'
|
|
@@ -14043,10 +14077,10 @@ class ClientPortfolioReportService {
|
|
|
14043
14077
|
return new ClientPortfolioReportCollection(clientReports);
|
|
14044
14078
|
}));
|
|
14045
14079
|
}
|
|
14046
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
14047
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
14080
|
+
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 }); }
|
|
14081
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' }); }
|
|
14048
14082
|
}
|
|
14049
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
14083
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
|
|
14050
14084
|
type: Injectable,
|
|
14051
14085
|
args: [{
|
|
14052
14086
|
providedIn: 'root'
|
|
@@ -14100,10 +14134,10 @@ class FirmService {
|
|
|
14100
14134
|
getByType(type) {
|
|
14101
14135
|
return this.getAll().pipe(map((firms) => firms.filter((firm) => firm.type === type)));
|
|
14102
14136
|
}
|
|
14103
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
14104
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
14137
|
+
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 }); }
|
|
14138
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmService, providedIn: 'root' }); }
|
|
14105
14139
|
}
|
|
14106
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
14140
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmService, decorators: [{
|
|
14107
14141
|
type: Injectable,
|
|
14108
14142
|
args: [{
|
|
14109
14143
|
providedIn: 'root'
|
|
@@ -14121,10 +14155,10 @@ class FirmBranchService extends RestService$1 {
|
|
|
14121
14155
|
this.collectionClass = (Collection);
|
|
14122
14156
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
14123
14157
|
}
|
|
14124
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
14125
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
14158
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmBranchService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14159
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmBranchService, providedIn: 'root' }); }
|
|
14126
14160
|
}
|
|
14127
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
14161
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FirmBranchService, decorators: [{
|
|
14128
14162
|
type: Injectable,
|
|
14129
14163
|
args: [{
|
|
14130
14164
|
providedIn: 'root'
|
|
@@ -14365,10 +14399,10 @@ class RestService {
|
|
|
14365
14399
|
getCache() {
|
|
14366
14400
|
return clone(this.cache);
|
|
14367
14401
|
}
|
|
14368
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
14369
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
14402
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14403
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
|
14370
14404
|
}
|
|
14371
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
14405
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RestService, decorators: [{
|
|
14372
14406
|
type: Injectable,
|
|
14373
14407
|
args: [{
|
|
14374
14408
|
providedIn: 'root'
|
|
@@ -14443,10 +14477,10 @@ class IncomeSourceForecastService extends RestService {
|
|
|
14443
14477
|
return incomeSource.incomeSourceForecasts;
|
|
14444
14478
|
}).flat();
|
|
14445
14479
|
}
|
|
14446
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
14447
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
14480
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14481
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' }); }
|
|
14448
14482
|
}
|
|
14449
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
14483
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
|
|
14450
14484
|
type: Injectable,
|
|
14451
14485
|
args: [{
|
|
14452
14486
|
providedIn: 'root'
|
|
@@ -14520,10 +14554,10 @@ class SalaryForecastService extends RestService {
|
|
|
14520
14554
|
return incomeSource.salaryForecasts;
|
|
14521
14555
|
}).flat();
|
|
14522
14556
|
}
|
|
14523
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
14524
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
14557
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SalaryForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14558
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SalaryForecastService, providedIn: 'root' }); }
|
|
14525
14559
|
}
|
|
14526
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
14560
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SalaryForecastService, decorators: [{
|
|
14527
14561
|
type: Injectable,
|
|
14528
14562
|
args: [{
|
|
14529
14563
|
providedIn: 'root'
|
|
@@ -14605,10 +14639,10 @@ class SoleForecastService extends RestService {
|
|
|
14605
14639
|
this.refreshCache();
|
|
14606
14640
|
});
|
|
14607
14641
|
}
|
|
14608
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
14609
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
14642
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14643
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleForecastService, providedIn: 'root' }); }
|
|
14610
14644
|
}
|
|
14611
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
14645
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleForecastService, decorators: [{
|
|
14612
14646
|
type: Injectable,
|
|
14613
14647
|
args: [{
|
|
14614
14648
|
providedIn: 'root'
|
|
@@ -14691,10 +14725,10 @@ class IncomeSourceService extends RestService {
|
|
|
14691
14725
|
this.refreshCache();
|
|
14692
14726
|
});
|
|
14693
14727
|
}
|
|
14694
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
14695
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
14728
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14729
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceService, providedIn: 'root' }); }
|
|
14696
14730
|
}
|
|
14697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
14731
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceService, decorators: [{
|
|
14698
14732
|
type: Injectable,
|
|
14699
14733
|
args: [{
|
|
14700
14734
|
providedIn: 'root'
|
|
@@ -14767,10 +14801,10 @@ class BorrowingExpenseService {
|
|
|
14767
14801
|
return combinedBorrowingExpenses;
|
|
14768
14802
|
}));
|
|
14769
14803
|
}
|
|
14770
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
14771
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
14804
|
+
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 }); }
|
|
14805
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' }); }
|
|
14772
14806
|
}
|
|
14773
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
14807
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingExpenseService, decorators: [{
|
|
14774
14808
|
type: Injectable,
|
|
14775
14809
|
args: [{
|
|
14776
14810
|
providedIn: 'root'
|
|
@@ -14854,10 +14888,10 @@ class LoanService extends RestService$1 {
|
|
|
14854
14888
|
delete(loan) {
|
|
14855
14889
|
return super.delete(loan, `${this.environment.apiV2}/loans/${loan.id}`);
|
|
14856
14890
|
}
|
|
14857
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
14858
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
14891
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: LoanService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14892
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: LoanService, providedIn: 'root' }); }
|
|
14859
14893
|
}
|
|
14860
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
14894
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: LoanService, decorators: [{
|
|
14861
14895
|
type: Injectable,
|
|
14862
14896
|
args: [{
|
|
14863
14897
|
providedIn: 'root'
|
|
@@ -14883,10 +14917,10 @@ class BorrowingReportService extends RestService$1 {
|
|
|
14883
14917
|
this.collectionClass = Collection;
|
|
14884
14918
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
14885
14919
|
}
|
|
14886
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
14887
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
14920
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14921
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingReportService, providedIn: 'root' }); }
|
|
14888
14922
|
}
|
|
14889
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
14923
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BorrowingReportService, decorators: [{
|
|
14890
14924
|
type: Injectable,
|
|
14891
14925
|
args: [{
|
|
14892
14926
|
providedIn: 'root'
|
|
@@ -14911,10 +14945,10 @@ class PropertyCategoryService extends RestService$1 {
|
|
|
14911
14945
|
this.endpointUri = 'properties/categories';
|
|
14912
14946
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
14913
14947
|
}
|
|
14914
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
14915
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
14948
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14949
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' }); }
|
|
14916
14950
|
}
|
|
14917
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
14951
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryService, decorators: [{
|
|
14918
14952
|
type: Injectable,
|
|
14919
14953
|
args: [{
|
|
14920
14954
|
providedIn: 'root'
|
|
@@ -14936,10 +14970,10 @@ class PropertyCategoryMovementService extends RestService$1 {
|
|
|
14936
14970
|
this.listenCSE(Property, this.refreshCache, ['post']);
|
|
14937
14971
|
this.listenCSE(PropertyValuation, this.refreshCache);
|
|
14938
14972
|
}
|
|
14939
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
14940
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
14973
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14974
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' }); }
|
|
14941
14975
|
}
|
|
14942
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
14976
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
|
|
14943
14977
|
type: Injectable,
|
|
14944
14978
|
args: [{
|
|
14945
14979
|
providedIn: 'root'
|
|
@@ -15020,10 +15054,10 @@ class TaxExemptionService extends DataService {
|
|
|
15020
15054
|
this.collectionClass = TaxExemptionCollection;
|
|
15021
15055
|
this.setCache(TaxExemptions);
|
|
15022
15056
|
}
|
|
15023
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15024
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15057
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxExemptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15058
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxExemptionService, providedIn: 'root' }); }
|
|
15025
15059
|
}
|
|
15026
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15060
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxExemptionService, decorators: [{
|
|
15027
15061
|
type: Injectable,
|
|
15028
15062
|
args: [{
|
|
15029
15063
|
providedIn: 'root'
|
|
@@ -15039,10 +15073,10 @@ class PropertySaleService extends RestService$1 {
|
|
|
15039
15073
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
15040
15074
|
this.roles = [UserRolesEnum$1.PROPERTY_TANK];
|
|
15041
15075
|
}
|
|
15042
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15043
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15076
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15077
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertySaleService, providedIn: 'root' }); }
|
|
15044
15078
|
}
|
|
15045
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15079
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertySaleService, decorators: [{
|
|
15046
15080
|
type: Injectable,
|
|
15047
15081
|
args: [{
|
|
15048
15082
|
providedIn: 'root'
|
|
@@ -15096,10 +15130,10 @@ class PropertyShareService extends RestService$1 {
|
|
|
15096
15130
|
listenSalesChanges() {
|
|
15097
15131
|
this.listenCSE(PropertySale, this.refreshCache, ['post', 'delete']);
|
|
15098
15132
|
}
|
|
15099
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15100
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15133
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyShareService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15134
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyShareService, providedIn: 'root' }); }
|
|
15101
15135
|
}
|
|
15102
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15136
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyShareService, decorators: [{
|
|
15103
15137
|
type: Injectable,
|
|
15104
15138
|
args: [{
|
|
15105
15139
|
providedIn: 'root'
|
|
@@ -15118,10 +15152,10 @@ class PropertyValuationService extends RestService$1 {
|
|
|
15118
15152
|
this.disabledMethods = ['postBatch', 'putBatch'];
|
|
15119
15153
|
this.useBackendError = true;
|
|
15120
15154
|
}
|
|
15121
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15122
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15155
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyValuationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15156
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyValuationService, providedIn: 'root' }); }
|
|
15123
15157
|
}
|
|
15124
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15158
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyValuationService, decorators: [{
|
|
15125
15159
|
type: Injectable,
|
|
15126
15160
|
args: [{
|
|
15127
15161
|
providedIn: 'root'
|
|
@@ -15265,10 +15299,10 @@ class PropertyService extends RestService$1 {
|
|
|
15265
15299
|
return of({ growthPercent: 0, lowMarketValue: 0, marketValue: 0, highMarketValue: 0, confidence: PropertyCorelogicStatsConfidenceTypeEnum.LOW });
|
|
15266
15300
|
}));
|
|
15267
15301
|
}
|
|
15268
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15269
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15302
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15303
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
|
|
15270
15304
|
}
|
|
15271
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15305
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyService, decorators: [{
|
|
15272
15306
|
type: Injectable,
|
|
15273
15307
|
args: [{
|
|
15274
15308
|
providedIn: 'root'
|
|
@@ -15325,10 +15359,10 @@ class ServiceNotificationService extends RestService {
|
|
|
15325
15359
|
this.eventDispatcherService.dispatch(new AppEvent(AppEventTypeEnum.NOTIFICATION_ADDED, notification));
|
|
15326
15360
|
});
|
|
15327
15361
|
}
|
|
15328
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15329
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15362
|
+
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 }); }
|
|
15363
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' }); }
|
|
15330
15364
|
}
|
|
15331
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15365
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceNotificationService, decorators: [{
|
|
15332
15366
|
type: Injectable,
|
|
15333
15367
|
args: [{
|
|
15334
15368
|
providedIn: 'root'
|
|
@@ -15351,10 +15385,10 @@ class SoleBusinessService extends RestService$1 {
|
|
|
15351
15385
|
this.endpointUri = 'sole-businesses';
|
|
15352
15386
|
this.roles = [UserRolesEnum$1.SOLE_TANK];
|
|
15353
15387
|
}
|
|
15354
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15355
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15388
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15389
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessService, providedIn: 'root' }); }
|
|
15356
15390
|
}
|
|
15357
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15391
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessService, decorators: [{
|
|
15358
15392
|
type: Injectable,
|
|
15359
15393
|
args: [{
|
|
15360
15394
|
providedIn: 'root'
|
|
@@ -15367,10 +15401,10 @@ class SoleBusinessActivityService extends RestService {
|
|
|
15367
15401
|
this.modelClass = SoleBusinessActivity;
|
|
15368
15402
|
this.url = 'sole-business-activities';
|
|
15369
15403
|
}
|
|
15370
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15371
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15404
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15405
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' }); }
|
|
15372
15406
|
}
|
|
15373
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15407
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
|
|
15374
15408
|
type: Injectable,
|
|
15375
15409
|
args: [{
|
|
15376
15410
|
providedIn: 'root'
|
|
@@ -15399,10 +15433,10 @@ class SoleBusinessLossService extends RestService$1 {
|
|
|
15399
15433
|
this.refreshCache();
|
|
15400
15434
|
});
|
|
15401
15435
|
}
|
|
15402
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15403
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15436
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15437
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' }); }
|
|
15404
15438
|
}
|
|
15405
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15439
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossService, decorators: [{
|
|
15406
15440
|
type: Injectable,
|
|
15407
15441
|
args: [{
|
|
15408
15442
|
providedIn: 'root'
|
|
@@ -15421,10 +15455,10 @@ class SoleBusinessLossOffsetRuleService extends RestService {
|
|
|
15421
15455
|
this.modelClass = SoleBusinessLossOffsetRule;
|
|
15422
15456
|
this.url = 'sole-business-loss-offset-rules';
|
|
15423
15457
|
}
|
|
15424
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15425
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15458
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15459
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' }); }
|
|
15426
15460
|
}
|
|
15427
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15461
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
|
|
15428
15462
|
type: Injectable,
|
|
15429
15463
|
args: [{
|
|
15430
15464
|
providedIn: 'root'
|
|
@@ -15437,10 +15471,10 @@ class SoleContactService extends RestService {
|
|
|
15437
15471
|
this.modelClass = SoleContact;
|
|
15438
15472
|
this.url = 'sole-contacts';
|
|
15439
15473
|
}
|
|
15440
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15441
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15474
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15475
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleContactService, providedIn: 'root' }); }
|
|
15442
15476
|
}
|
|
15443
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15477
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleContactService, decorators: [{
|
|
15444
15478
|
type: Injectable,
|
|
15445
15479
|
args: [{
|
|
15446
15480
|
providedIn: 'root'
|
|
@@ -15496,10 +15530,10 @@ class SoleDepreciationMethodService {
|
|
|
15496
15530
|
this.get().subscribe();
|
|
15497
15531
|
});
|
|
15498
15532
|
}
|
|
15499
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15500
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15533
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDepreciationMethodService, deps: [{ token: i1.HttpClient }, { token: 'environment' }, { token: EventDispatcherService }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15534
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDepreciationMethodService, providedIn: 'root' }); }
|
|
15501
15535
|
}
|
|
15502
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15536
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDepreciationMethodService, decorators: [{
|
|
15503
15537
|
type: Injectable,
|
|
15504
15538
|
args: [{
|
|
15505
15539
|
providedIn: 'root'
|
|
@@ -15524,10 +15558,10 @@ class SoleDetailsService extends RestService$1 {
|
|
|
15524
15558
|
get() {
|
|
15525
15559
|
return super.get().pipe(map(soleDetails => soleDetails.length ? soleDetails : new Collection([plainToClass(SoleDetails, {})])));
|
|
15526
15560
|
}
|
|
15527
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15528
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15561
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15562
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsService, providedIn: 'root' }); }
|
|
15529
15563
|
}
|
|
15530
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15564
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsService, decorators: [{
|
|
15531
15565
|
type: Injectable,
|
|
15532
15566
|
args: [{
|
|
15533
15567
|
providedIn: 'root'
|
|
@@ -15561,10 +15595,10 @@ class SoleInvoiceService extends RestService$1 {
|
|
|
15561
15595
|
}
|
|
15562
15596
|
return this.cache.last.number + 1;
|
|
15563
15597
|
}
|
|
15564
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15565
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15598
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15599
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' }); }
|
|
15566
15600
|
}
|
|
15567
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15601
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceService, decorators: [{
|
|
15568
15602
|
type: Injectable,
|
|
15569
15603
|
args: [{
|
|
15570
15604
|
providedIn: 'root'
|
|
@@ -15580,10 +15614,10 @@ class SoleInvoiceTemplateService extends RestService {
|
|
|
15580
15614
|
this.modelClass = SoleInvoiceTemplate;
|
|
15581
15615
|
this.url = 'sole-invoice-templates';
|
|
15582
15616
|
}
|
|
15583
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15584
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15617
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15618
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' }); }
|
|
15585
15619
|
}
|
|
15586
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15620
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
|
|
15587
15621
|
type: Injectable,
|
|
15588
15622
|
args: [{
|
|
15589
15623
|
providedIn: 'root'
|
|
@@ -15604,10 +15638,10 @@ class BasReportService extends RestService {
|
|
|
15604
15638
|
this.modelClass = BasReport;
|
|
15605
15639
|
this.url = 'bas-reports';
|
|
15606
15640
|
}
|
|
15607
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15608
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15641
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15642
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasReportService, providedIn: 'root' }); }
|
|
15609
15643
|
}
|
|
15610
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15644
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasReportService, decorators: [{
|
|
15611
15645
|
type: Injectable,
|
|
15612
15646
|
args: [{
|
|
15613
15647
|
providedIn: 'root'
|
|
@@ -15631,10 +15665,10 @@ class ServicePaymentService extends RestService$1 {
|
|
|
15631
15665
|
}
|
|
15632
15666
|
return this.http.get(`${this.environment.apiV2}/service-payments/${payment.id}/invoice-url`);
|
|
15633
15667
|
}
|
|
15634
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15635
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15668
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15669
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentService, providedIn: 'root' }); }
|
|
15636
15670
|
}
|
|
15637
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentService, decorators: [{
|
|
15638
15672
|
type: Injectable,
|
|
15639
15673
|
args: [{
|
|
15640
15674
|
providedIn: 'root'
|
|
@@ -15666,10 +15700,10 @@ class ServicePaymentMethodService extends RestService$1 {
|
|
|
15666
15700
|
return this.http.put(`${this.apiUrl}/${paymentMethod.id}/default`, {})
|
|
15667
15701
|
.pipe(map((updatedPaymentMethod) => plainToClass(ServicePaymentMethod, updatedPaymentMethod)));
|
|
15668
15702
|
}
|
|
15669
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15670
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15703
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentMethodService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15704
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' }); }
|
|
15671
15705
|
}
|
|
15672
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15706
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
|
|
15673
15707
|
type: Injectable,
|
|
15674
15708
|
args: [{
|
|
15675
15709
|
providedIn: 'root'
|
|
@@ -15690,10 +15724,10 @@ class ServicePriceService extends RestService$1 {
|
|
|
15690
15724
|
this.collectionClass = ServicePriceCollection;
|
|
15691
15725
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
15692
15726
|
}
|
|
15693
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15694
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15727
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15728
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePriceService, providedIn: 'root' }); }
|
|
15695
15729
|
}
|
|
15696
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15730
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServicePriceService, decorators: [{
|
|
15697
15731
|
type: Injectable,
|
|
15698
15732
|
args: [{
|
|
15699
15733
|
providedIn: 'root'
|
|
@@ -15778,10 +15812,10 @@ class SubscriptionService extends RestService$1 {
|
|
|
15778
15812
|
get(path = this.apiUrl) {
|
|
15779
15813
|
return super.get(path).pipe(map(subscriptions => subscriptions.sortBy('isActive', 'ask')));
|
|
15780
15814
|
}
|
|
15781
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15782
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15815
|
+
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 }); }
|
|
15816
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SubscriptionService, providedIn: 'root' }); }
|
|
15783
15817
|
}
|
|
15784
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15818
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SubscriptionService, decorators: [{
|
|
15785
15819
|
type: Injectable,
|
|
15786
15820
|
args: [{
|
|
15787
15821
|
providedIn: 'root'
|
|
@@ -15799,10 +15833,10 @@ class ServiceProductService extends RestService$1 {
|
|
|
15799
15833
|
this.endpointUri = 'service-products';
|
|
15800
15834
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
15801
15835
|
}
|
|
15802
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15803
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15836
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15837
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceProductService, providedIn: 'root' }); }
|
|
15804
15838
|
}
|
|
15805
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15839
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ServiceProductService, decorators: [{
|
|
15806
15840
|
type: Injectable,
|
|
15807
15841
|
args: [{
|
|
15808
15842
|
providedIn: 'root'
|
|
@@ -15938,10 +15972,10 @@ class TaxReviewHistoryService extends RestService {
|
|
|
15938
15972
|
this.updateCache();
|
|
15939
15973
|
});
|
|
15940
15974
|
}
|
|
15941
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
15942
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
15975
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewHistoryService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15976
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' }); }
|
|
15943
15977
|
}
|
|
15944
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
15978
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
|
|
15945
15979
|
type: Injectable,
|
|
15946
15980
|
args: [{
|
|
15947
15981
|
providedIn: 'root'
|
|
@@ -16034,10 +16068,10 @@ class TaxReviewService extends RestService {
|
|
|
16034
16068
|
}
|
|
16035
16069
|
});
|
|
16036
16070
|
}
|
|
16037
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
16038
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
16071
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16072
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewService, providedIn: 'root' }); }
|
|
16039
16073
|
}
|
|
16040
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
16074
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReviewService, decorators: [{
|
|
16041
16075
|
type: Injectable,
|
|
16042
16076
|
args: [{
|
|
16043
16077
|
providedIn: 'root'
|
|
@@ -16368,10 +16402,10 @@ class TaxSummaryService {
|
|
|
16368
16402
|
this.getForecast().subscribe();
|
|
16369
16403
|
});
|
|
16370
16404
|
}
|
|
16371
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
16372
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
16405
|
+
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 }); }
|
|
16406
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxSummaryService, providedIn: 'root' }); }
|
|
16373
16407
|
}
|
|
16374
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
16408
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxSummaryService, decorators: [{
|
|
16375
16409
|
type: Injectable,
|
|
16376
16410
|
args: [{
|
|
16377
16411
|
providedIn: 'root'
|
|
@@ -16392,10 +16426,10 @@ class AllocationRuleService extends RestService$1 {
|
|
|
16392
16426
|
getCustomHttpErrorMessages() {
|
|
16393
16427
|
return { 422: 'You can only have 10 conditions in a rule' };
|
|
16394
16428
|
}
|
|
16395
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
16396
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
16429
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16430
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AllocationRuleService, providedIn: 'root' }); }
|
|
16397
16431
|
}
|
|
16398
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
16432
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AllocationRuleService, decorators: [{
|
|
16399
16433
|
type: Injectable,
|
|
16400
16434
|
args: [{
|
|
16401
16435
|
providedIn: 'root'
|
|
@@ -16500,10 +16534,10 @@ class TransactionAllocationService extends RestService {
|
|
|
16500
16534
|
}
|
|
16501
16535
|
});
|
|
16502
16536
|
}
|
|
16503
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
16504
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
16537
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionAllocationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16538
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' }); }
|
|
16505
16539
|
}
|
|
16506
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
16540
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionAllocationService, decorators: [{
|
|
16507
16541
|
type: Injectable,
|
|
16508
16542
|
args: [{
|
|
16509
16543
|
providedIn: 'root'
|
|
@@ -16755,10 +16789,10 @@ class TransactionService extends RestService {
|
|
|
16755
16789
|
}
|
|
16756
16790
|
});
|
|
16757
16791
|
}
|
|
16758
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
16759
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
16792
|
+
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 }); }
|
|
16793
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionService, providedIn: 'root' }); }
|
|
16760
16794
|
}
|
|
16761
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
16795
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TransactionService, decorators: [{
|
|
16762
16796
|
type: Injectable,
|
|
16763
16797
|
args: [{
|
|
16764
16798
|
providedIn: 'root'
|
|
@@ -16784,10 +16818,10 @@ class PriorTransactionService extends RestService$1 {
|
|
|
16784
16818
|
const financialYear = new FinancialYear(new FinancialYear().year - 1);
|
|
16785
16819
|
return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(transactions => transactions.filterByFinancialYear('date', null, financialYear)));
|
|
16786
16820
|
}
|
|
16787
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
16788
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
16821
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16822
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorTransactionService, providedIn: 'root' }); }
|
|
16789
16823
|
}
|
|
16790
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
16824
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PriorTransactionService, decorators: [{
|
|
16791
16825
|
type: Injectable,
|
|
16792
16826
|
args: [{
|
|
16793
16827
|
providedIn: 'root'
|
|
@@ -16809,10 +16843,10 @@ class InvoiceTransactionsService extends RestService$1 {
|
|
|
16809
16843
|
this.endpointUri = 'invoices/transactions';
|
|
16810
16844
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
16811
16845
|
}
|
|
16812
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
16813
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
16846
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InvoiceTransactionsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16847
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InvoiceTransactionsService, providedIn: 'root' }); }
|
|
16814
16848
|
}
|
|
16815
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
16849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InvoiceTransactionsService, decorators: [{
|
|
16816
16850
|
type: Injectable,
|
|
16817
16851
|
args: [{
|
|
16818
16852
|
providedIn: 'root'
|
|
@@ -16836,10 +16870,10 @@ class YoutubeService {
|
|
|
16836
16870
|
title: item.snippet.title
|
|
16837
16871
|
}))));
|
|
16838
16872
|
}
|
|
16839
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
16840
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
16873
|
+
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 }); }
|
|
16874
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: YoutubeService, providedIn: 'root' }); }
|
|
16841
16875
|
}
|
|
16842
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
16876
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: YoutubeService, decorators: [{
|
|
16843
16877
|
type: Injectable,
|
|
16844
16878
|
args: [{
|
|
16845
16879
|
providedIn: 'root'
|
|
@@ -16859,10 +16893,10 @@ class VehicleService extends RestService$1 {
|
|
|
16859
16893
|
this.collectionClass = (Collection);
|
|
16860
16894
|
this.modelClass = Vehicle;
|
|
16861
16895
|
}
|
|
16862
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
16863
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
16896
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16897
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleService, providedIn: 'root' }); }
|
|
16864
16898
|
}
|
|
16865
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
16899
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleService, decorators: [{
|
|
16866
16900
|
type: Injectable,
|
|
16867
16901
|
args: [{
|
|
16868
16902
|
providedIn: 'root'
|
|
@@ -16892,10 +16926,10 @@ class VehicleClaimService extends RestService$1 {
|
|
|
16892
16926
|
this.refreshCache();
|
|
16893
16927
|
});
|
|
16894
16928
|
}
|
|
16895
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
16896
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
16929
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleClaimService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16930
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleClaimService, providedIn: 'root' }); }
|
|
16897
16931
|
}
|
|
16898
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
16932
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleClaimService, decorators: [{
|
|
16899
16933
|
type: Injectable,
|
|
16900
16934
|
args: [{
|
|
16901
16935
|
providedIn: 'root'
|
|
@@ -16957,10 +16991,10 @@ class VehicleClaimDetailsService {
|
|
|
16957
16991
|
const vehicleClaimDetails = plainToClass(VehicleClaimDetails, Object.assign({}, this.cache, { isManual: true }));
|
|
16958
16992
|
this.update(vehicleClaimDetails).subscribe();
|
|
16959
16993
|
}
|
|
16960
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
16961
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
16994
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleClaimDetailsService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: EventDispatcherService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16995
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleClaimDetailsService, providedIn: 'root' }); }
|
|
16962
16996
|
}
|
|
16963
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
16997
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleClaimDetailsService, decorators: [{
|
|
16964
16998
|
type: Injectable,
|
|
16965
16999
|
args: [{
|
|
16966
17000
|
providedIn: 'root'
|
|
@@ -16981,10 +17015,10 @@ class VehicleLogbookService extends RestService$1 {
|
|
|
16981
17015
|
this.collectionClass = VehicleLogbookCollection;
|
|
16982
17016
|
this.modelClass = VehicleLogbook;
|
|
16983
17017
|
}
|
|
16984
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
16985
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17018
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17019
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' }); }
|
|
16986
17020
|
}
|
|
16987
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17021
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: VehicleLogbookService, decorators: [{
|
|
16988
17022
|
type: Injectable,
|
|
16989
17023
|
args: [{
|
|
16990
17024
|
providedIn: 'root'
|
|
@@ -17007,10 +17041,10 @@ class AnnualClientDetailsService extends RestService$1 {
|
|
|
17007
17041
|
this.endpointUri = 'annual-client-details';
|
|
17008
17042
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
|
|
17009
17043
|
}
|
|
17010
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17011
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17044
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AnnualClientDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17045
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AnnualClientDetailsService, providedIn: 'root' }); }
|
|
17012
17046
|
}
|
|
17013
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17047
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
|
|
17014
17048
|
type: Injectable,
|
|
17015
17049
|
args: [{
|
|
17016
17050
|
providedIn: 'root'
|
|
@@ -17040,10 +17074,10 @@ class OccupationService {
|
|
|
17040
17074
|
}
|
|
17041
17075
|
return this.occupationsSubject.asObservable();
|
|
17042
17076
|
}
|
|
17043
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17044
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17077
|
+
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 }); }
|
|
17078
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: OccupationService, providedIn: 'root' }); }
|
|
17045
17079
|
}
|
|
17046
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17080
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: OccupationService, decorators: [{
|
|
17047
17081
|
type: Injectable,
|
|
17048
17082
|
args: [{
|
|
17049
17083
|
providedIn: 'root'
|
|
@@ -17065,10 +17099,10 @@ class ClientCouponService extends RestService$1 {
|
|
|
17065
17099
|
this.endpointUri = 'users/current/promo-code';
|
|
17066
17100
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
17067
17101
|
}
|
|
17068
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17069
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17102
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientCouponService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17103
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientCouponService, providedIn: 'root' }); }
|
|
17070
17104
|
}
|
|
17071
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientCouponService, decorators: [{
|
|
17072
17106
|
type: Injectable,
|
|
17073
17107
|
args: [{
|
|
17074
17108
|
providedIn: 'root'
|
|
@@ -17083,10 +17117,10 @@ class CapitalLossService extends RestService$1 {
|
|
|
17083
17117
|
this.collectionClass = (Collection);
|
|
17084
17118
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
17085
17119
|
}
|
|
17086
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17087
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17120
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CapitalLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17121
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CapitalLossService, providedIn: 'root' }); }
|
|
17088
17122
|
}
|
|
17089
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CapitalLossService, decorators: [{
|
|
17090
17124
|
type: Injectable,
|
|
17091
17125
|
args: [{
|
|
17092
17126
|
providedIn: 'root'
|
|
@@ -17149,10 +17183,10 @@ class UserEventSettingService extends RestService$1 {
|
|
|
17149
17183
|
this.endpointUri = 'user-event-settings';
|
|
17150
17184
|
this.disabledMethods = ['postBatch', 'putBatch', 'delete', 'deleteBatch'];
|
|
17151
17185
|
}
|
|
17152
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17153
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17186
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17187
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventSettingService, providedIn: 'root' }); }
|
|
17154
17188
|
}
|
|
17155
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17189
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventSettingService, decorators: [{
|
|
17156
17190
|
type: Injectable,
|
|
17157
17191
|
args: [{
|
|
17158
17192
|
providedIn: 'root'
|
|
@@ -17167,10 +17201,10 @@ class UserEventTypeService extends RestService$1 {
|
|
|
17167
17201
|
this.endpointUri = 'user-event-types';
|
|
17168
17202
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
17169
17203
|
}
|
|
17170
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17171
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17204
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17205
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventTypeService, providedIn: 'root' }); }
|
|
17172
17206
|
}
|
|
17173
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserEventTypeService, decorators: [{
|
|
17174
17208
|
type: Injectable,
|
|
17175
17209
|
args: [{
|
|
17176
17210
|
providedIn: 'root'
|
|
@@ -17197,10 +17231,10 @@ class UsersInviteService extends RestService {
|
|
|
17197
17231
|
this.modelClass = RegistrationInvite;
|
|
17198
17232
|
this.url = 'users/invite';
|
|
17199
17233
|
}
|
|
17200
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17201
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17234
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17235
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UsersInviteService, providedIn: 'root' }); }
|
|
17202
17236
|
}
|
|
17203
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UsersInviteService, decorators: [{
|
|
17204
17238
|
type: Injectable,
|
|
17205
17239
|
args: [{
|
|
17206
17240
|
providedIn: 'root'
|
|
@@ -17315,10 +17349,10 @@ class UserService extends RestService$1 {
|
|
|
17315
17349
|
this.setCache([user], true);
|
|
17316
17350
|
}, ['post', 'put']);
|
|
17317
17351
|
}
|
|
17318
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17319
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17352
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17353
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserService, providedIn: 'root' }); }
|
|
17320
17354
|
}
|
|
17321
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17355
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserService, decorators: [{
|
|
17322
17356
|
type: Injectable,
|
|
17323
17357
|
args: [{
|
|
17324
17358
|
providedIn: 'root'
|
|
@@ -17339,10 +17373,10 @@ class FinancialYearService {
|
|
|
17339
17373
|
window.location.reload();
|
|
17340
17374
|
}));
|
|
17341
17375
|
}
|
|
17342
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17343
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17376
|
+
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 }); }
|
|
17377
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearService, providedIn: 'root' }); }
|
|
17344
17378
|
}
|
|
17345
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17379
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearService, decorators: [{
|
|
17346
17380
|
type: Injectable,
|
|
17347
17381
|
args: [{
|
|
17348
17382
|
providedIn: 'root'
|
|
@@ -17386,10 +17420,10 @@ class MfaDetailsService extends RestService$1 {
|
|
|
17386
17420
|
return mfaDetails;
|
|
17387
17421
|
}));
|
|
17388
17422
|
}
|
|
17389
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17390
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17423
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MfaDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17424
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MfaDetailsService, providedIn: 'root' }); }
|
|
17391
17425
|
}
|
|
17392
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17426
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MfaDetailsService, decorators: [{
|
|
17393
17427
|
type: Injectable,
|
|
17394
17428
|
args: [{
|
|
17395
17429
|
providedIn: 'root'
|
|
@@ -17426,10 +17460,10 @@ class HoldingTradeService extends RestService$1 {
|
|
|
17426
17460
|
}
|
|
17427
17461
|
});
|
|
17428
17462
|
}
|
|
17429
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17430
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17463
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17464
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeService, providedIn: 'root' }); }
|
|
17431
17465
|
}
|
|
17432
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17466
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeService, decorators: [{
|
|
17433
17467
|
type: Injectable,
|
|
17434
17468
|
args: [{
|
|
17435
17469
|
providedIn: 'root'
|
|
@@ -17466,10 +17500,10 @@ class HoldingTypeService extends RestService$1 {
|
|
|
17466
17500
|
}
|
|
17467
17501
|
});
|
|
17468
17502
|
}
|
|
17469
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17470
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17503
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17504
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeService, providedIn: 'root' }); }
|
|
17471
17505
|
}
|
|
17472
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17506
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeService, decorators: [{
|
|
17473
17507
|
type: Injectable,
|
|
17474
17508
|
args: [{
|
|
17475
17509
|
providedIn: 'root'
|
|
@@ -17488,10 +17522,10 @@ class HoldingSaleService extends RestService$1 {
|
|
|
17488
17522
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
17489
17523
|
this.roles = [UserRolesEnum$1.HOLDING_TANK];
|
|
17490
17524
|
}
|
|
17491
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17492
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17525
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17526
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingSaleService, providedIn: 'root' }); }
|
|
17493
17527
|
}
|
|
17494
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingSaleService, decorators: [{
|
|
17495
17529
|
type: Injectable,
|
|
17496
17530
|
args: [{
|
|
17497
17531
|
providedIn: 'root'
|
|
@@ -17533,10 +17567,10 @@ class HoldingTradeImportService extends RestService$1 {
|
|
|
17533
17567
|
return throwError(error);
|
|
17534
17568
|
}));
|
|
17535
17569
|
}
|
|
17536
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17537
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17570
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeImportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17571
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeImportService, providedIn: 'root' }); }
|
|
17538
17572
|
}
|
|
17539
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17573
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTradeImportService, decorators: [{
|
|
17540
17574
|
type: Injectable,
|
|
17541
17575
|
args: [{
|
|
17542
17576
|
providedIn: 'root'
|
|
@@ -17630,10 +17664,10 @@ class HoldingTypeExchangeService extends DataService {
|
|
|
17630
17664
|
this.collectionClass = Collection;
|
|
17631
17665
|
this.setCache(HoldingTypeExchanges);
|
|
17632
17666
|
}
|
|
17633
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17634
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17667
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeExchangeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17668
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeExchangeService, providedIn: 'root' }); }
|
|
17635
17669
|
}
|
|
17636
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17670
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTypeExchangeService, decorators: [{
|
|
17637
17671
|
type: Injectable,
|
|
17638
17672
|
args: [{
|
|
17639
17673
|
providedIn: 'root'
|
|
@@ -17667,10 +17701,10 @@ class HomeOfficeClaimService extends RestService$1 {
|
|
|
17667
17701
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
17668
17702
|
this.roles = [UserRolesEnum$1.WORK_TANK, UserRolesEnum$1.SOLE_TANK];
|
|
17669
17703
|
}
|
|
17670
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17671
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17704
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17705
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeClaimService, providedIn: 'root' }); }
|
|
17672
17706
|
}
|
|
17673
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17707
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeClaimService, decorators: [{
|
|
17674
17708
|
type: Injectable,
|
|
17675
17709
|
args: [{
|
|
17676
17710
|
providedIn: 'root'
|
|
@@ -17698,10 +17732,10 @@ class HomeOfficeLogService extends RestService$1 {
|
|
|
17698
17732
|
listenEvents() {
|
|
17699
17733
|
this.listenCSE(HomeOfficeClaim, this.refreshCache, ['post']);
|
|
17700
17734
|
}
|
|
17701
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17702
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17735
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeLogService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17736
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeLogService, providedIn: 'root' }); }
|
|
17703
17737
|
}
|
|
17704
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17738
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HomeOfficeLogService, decorators: [{
|
|
17705
17739
|
type: Injectable,
|
|
17706
17740
|
args: [{
|
|
17707
17741
|
providedIn: 'root'
|
|
@@ -17741,10 +17775,10 @@ class AussieService extends RestService$1 {
|
|
|
17741
17775
|
postAppointment() {
|
|
17742
17776
|
return this.http.delete(`${this.environment.apiV2}/aussie/appointments`);
|
|
17743
17777
|
}
|
|
17744
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17745
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17778
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17779
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieService, providedIn: 'root' }); }
|
|
17746
17780
|
}
|
|
17747
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17781
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieService, decorators: [{
|
|
17748
17782
|
type: Injectable,
|
|
17749
17783
|
args: [{
|
|
17750
17784
|
providedIn: 'root'
|
|
@@ -17768,10 +17802,10 @@ class SharesightDetailsService extends RestService$1 {
|
|
|
17768
17802
|
reconnect(sharesightDetails) {
|
|
17769
17803
|
return this.put(sharesightDetails, `${this.apiUrl}/${sharesightDetails.id}/reconnect`);
|
|
17770
17804
|
}
|
|
17771
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17772
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17805
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17806
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightDetailsService, providedIn: 'root' }); }
|
|
17773
17807
|
}
|
|
17774
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17808
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightDetailsService, decorators: [{
|
|
17775
17809
|
type: Injectable,
|
|
17776
17810
|
args: [{
|
|
17777
17811
|
providedIn: 'root'
|
|
@@ -17789,10 +17823,10 @@ class SharesightPortfolioService extends RestService$1 {
|
|
|
17789
17823
|
getExternal() {
|
|
17790
17824
|
return this.fetch(`${this.apiUrl}/external`, false);
|
|
17791
17825
|
}
|
|
17792
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17793
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17826
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightPortfolioService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17827
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightPortfolioService, providedIn: 'root' }); }
|
|
17794
17828
|
}
|
|
17795
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17829
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SharesightPortfolioService, decorators: [{
|
|
17796
17830
|
type: Injectable,
|
|
17797
17831
|
args: [{
|
|
17798
17832
|
providedIn: 'root'
|
|
@@ -17869,10 +17903,10 @@ class IncomeSourceTypeService extends DataService {
|
|
|
17869
17903
|
this.collectionClass = Collection;
|
|
17870
17904
|
this.setCache(IncomeSourceTypes);
|
|
17871
17905
|
}
|
|
17872
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17873
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17906
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceTypeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17907
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceTypeService, providedIn: 'root' }); }
|
|
17874
17908
|
}
|
|
17875
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17909
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IncomeSourceTypeService, decorators: [{
|
|
17876
17910
|
type: Injectable,
|
|
17877
17911
|
args: [{
|
|
17878
17912
|
providedIn: 'root'
|
|
@@ -17886,10 +17920,10 @@ class ChartAccountsValueService extends DataService {
|
|
|
17886
17920
|
this.collectionClass = ChartAccountsValueCollection;
|
|
17887
17921
|
this.setCache(ChartAccountsValues);
|
|
17888
17922
|
}
|
|
17889
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
17890
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
17923
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsValueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17924
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsValueService, providedIn: 'root' }); }
|
|
17891
17925
|
}
|
|
17892
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
17926
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ChartAccountsValueService, decorators: [{
|
|
17893
17927
|
type: Injectable,
|
|
17894
17928
|
args: [{
|
|
17895
17929
|
providedIn: 'root'
|
|
@@ -19862,10 +19896,10 @@ class TaxReturnItemService extends DataService {
|
|
|
19862
19896
|
this.collectionClass = Collection;
|
|
19863
19897
|
this.setCache(TaxReturnItems);
|
|
19864
19898
|
}
|
|
19865
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
19866
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
19899
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReturnItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19900
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReturnItemService, providedIn: 'root' }); }
|
|
19867
19901
|
}
|
|
19868
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
19902
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: TaxReturnItemService, decorators: [{
|
|
19869
19903
|
type: Injectable,
|
|
19870
19904
|
args: [{
|
|
19871
19905
|
providedIn: 'root'
|
|
@@ -19880,10 +19914,10 @@ class SetupItemService extends RestService$1 {
|
|
|
19880
19914
|
this.collectionClass = AccountSetupItemCollection;
|
|
19881
19915
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
19882
19916
|
}
|
|
19883
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
19884
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
19917
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SetupItemService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19918
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SetupItemService, providedIn: 'root' }); }
|
|
19885
19919
|
}
|
|
19886
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
19920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SetupItemService, decorators: [{
|
|
19887
19921
|
type: Injectable,
|
|
19888
19922
|
args: [{
|
|
19889
19923
|
providedIn: 'root'
|
|
@@ -20066,10 +20100,10 @@ class AccountSetupService {
|
|
|
20066
20100
|
getSharesightDetails(importEnabled) {
|
|
20067
20101
|
return this.sharesightDetailsService.getArray().pipe(map(details => details.filter(detail => importEnabled ? detail.importEnabled : detail.exportEnabled)));
|
|
20068
20102
|
}
|
|
20069
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20070
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
20103
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AccountSetupService, deps: [{ token: SetupItemService }, { token: PropertyService }, { token: IncomeSourceService }, { token: BankConnectionService }, { token: BankAccountService }, { token: BankTransactionService }, { token: LoanService }, { token: AllocationRuleService }, { token: TransactionAllocationService }, { token: VehicleClaimService }, { token: HomeOfficeClaimService }, { token: TransactionService }, { token: DepreciationService }, { token: SoleBusinessService }, { token: HoldingTradeService }, { token: UserService }, { token: ClientMovementService }, { token: ClientInviteService }, { token: EmployeeService }, { token: EmployeeInviteService }, { token: FirmService }, { token: SharesightDetailsService }, { token: PropertyShareService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
20104
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AccountSetupService, providedIn: 'root' }); }
|
|
20071
20105
|
}
|
|
20072
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AccountSetupService, decorators: [{
|
|
20073
20107
|
type: Injectable,
|
|
20074
20108
|
args: [{
|
|
20075
20109
|
providedIn: 'root'
|
|
@@ -20084,10 +20118,10 @@ class AdblockDetectorService {
|
|
|
20084
20118
|
constructor() {
|
|
20085
20119
|
checkAdBlock().then((isDetected) => this.isDetected = isDetected);
|
|
20086
20120
|
}
|
|
20087
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20088
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
20121
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdblockDetectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
20122
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdblockDetectorService, providedIn: 'root' }); }
|
|
20089
20123
|
}
|
|
20090
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20124
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdblockDetectorService, decorators: [{
|
|
20091
20125
|
type: Injectable,
|
|
20092
20126
|
args: [{
|
|
20093
20127
|
providedIn: 'root'
|
|
@@ -20138,10 +20172,10 @@ class MixpanelService {
|
|
|
20138
20172
|
}
|
|
20139
20173
|
mixpanel['track_pageview']();
|
|
20140
20174
|
}
|
|
20141
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20142
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
20175
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MixpanelService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
20176
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MixpanelService, providedIn: 'root' }); }
|
|
20143
20177
|
}
|
|
20144
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: MixpanelService, decorators: [{
|
|
20145
20179
|
type: Injectable,
|
|
20146
20180
|
args: [{
|
|
20147
20181
|
providedIn: 'root'
|
|
@@ -20208,10 +20242,10 @@ class JwtService extends JwtHelperService {
|
|
|
20208
20242
|
isMe(userId) {
|
|
20209
20243
|
return this.decode().id === userId;
|
|
20210
20244
|
}
|
|
20211
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20212
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
20245
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
20246
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtService, providedIn: 'root' }); }
|
|
20213
20247
|
}
|
|
20214
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20248
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtService, decorators: [{
|
|
20215
20249
|
type: Injectable,
|
|
20216
20250
|
args: [{
|
|
20217
20251
|
providedIn: 'root'
|
|
@@ -20252,10 +20286,10 @@ class AuthService {
|
|
|
20252
20286
|
this.jwtService.destroyTokens();
|
|
20253
20287
|
location.replace(url);
|
|
20254
20288
|
}
|
|
20255
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20256
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
20289
|
+
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 }); }
|
|
20290
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AuthService, providedIn: 'root' }); }
|
|
20257
20291
|
}
|
|
20258
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20292
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AuthService, decorators: [{
|
|
20259
20293
|
type: Injectable,
|
|
20260
20294
|
args: [{
|
|
20261
20295
|
providedIn: 'root'
|
|
@@ -20392,10 +20426,10 @@ class JwtInterceptor {
|
|
|
20392
20426
|
// });
|
|
20393
20427
|
});
|
|
20394
20428
|
}
|
|
20395
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20396
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
20429
|
+
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 }); }
|
|
20430
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtInterceptor }); }
|
|
20397
20431
|
}
|
|
20398
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20432
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: JwtInterceptor, decorators: [{
|
|
20399
20433
|
type: Injectable
|
|
20400
20434
|
}], ctorParameters: () => [{ type: JwtService }, { type: AuthService }, { type: undefined, decorators: [{
|
|
20401
20435
|
type: Inject,
|
|
@@ -20403,9 +20437,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
20403
20437
|
}] }] });
|
|
20404
20438
|
|
|
20405
20439
|
let InterceptorsModule$1 = class InterceptorsModule {
|
|
20406
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20407
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.
|
|
20408
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.
|
|
20440
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
20441
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule }); }
|
|
20442
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, providers: [
|
|
20409
20443
|
{
|
|
20410
20444
|
provide: HTTP_INTERCEPTORS,
|
|
20411
20445
|
useClass: JwtInterceptor,
|
|
@@ -20413,7 +20447,7 @@ let InterceptorsModule$1 = class InterceptorsModule {
|
|
|
20413
20447
|
}
|
|
20414
20448
|
] }); }
|
|
20415
20449
|
};
|
|
20416
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule$1, decorators: [{
|
|
20417
20451
|
type: NgModule,
|
|
20418
20452
|
args: [{
|
|
20419
20453
|
providers: [
|
|
@@ -20443,13 +20477,13 @@ class CommonModule {
|
|
|
20443
20477
|
]
|
|
20444
20478
|
};
|
|
20445
20479
|
}
|
|
20446
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20447
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.
|
|
20480
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
20481
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
|
|
20448
20482
|
InterceptorsModule$1] }); }
|
|
20449
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.
|
|
20483
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
|
|
20450
20484
|
InterceptorsModule$1] }); }
|
|
20451
20485
|
}
|
|
20452
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20486
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CommonModule, decorators: [{
|
|
20453
20487
|
type: NgModule,
|
|
20454
20488
|
args: [{
|
|
20455
20489
|
declarations: [],
|
|
@@ -20496,10 +20530,10 @@ class UserSwitcherService {
|
|
|
20496
20530
|
window.location.replace('/client/dashboard');
|
|
20497
20531
|
});
|
|
20498
20532
|
}
|
|
20499
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20500
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
20533
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
20534
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherService, providedIn: 'root' }); }
|
|
20501
20535
|
}
|
|
20502
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20536
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherService, decorators: [{
|
|
20503
20537
|
type: Injectable,
|
|
20504
20538
|
args: [{
|
|
20505
20539
|
providedIn: 'root'
|
|
@@ -20543,10 +20577,10 @@ class AssetsService {
|
|
|
20543
20577
|
delete(entityId, asset) {
|
|
20544
20578
|
return this.http.delete(`${this.environment.apiV2}/${asset.entityType}/${entityId}/${asset.type}/${asset.id}`);
|
|
20545
20579
|
}
|
|
20546
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20547
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
20580
|
+
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 }); }
|
|
20581
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AssetsService, providedIn: 'root' }); }
|
|
20548
20582
|
}
|
|
20549
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20583
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AssetsService, decorators: [{
|
|
20550
20584
|
type: Injectable,
|
|
20551
20585
|
args: [{
|
|
20552
20586
|
providedIn: 'root'
|
|
@@ -20574,10 +20608,10 @@ class BankAccountCalculationService {
|
|
|
20574
20608
|
getNetPosition(bankAccounts, bankTransactions, allocations) {
|
|
20575
20609
|
return bankAccounts.currentBalance - this.getTaxTankBalance(bankAccounts.getLoanAccounts(), bankTransactions, allocations);
|
|
20576
20610
|
}
|
|
20577
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20578
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
20611
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
20612
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' }); }
|
|
20579
20613
|
}
|
|
20580
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20614
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BankAccountCalculationService, decorators: [{
|
|
20581
20615
|
type: Injectable,
|
|
20582
20616
|
args: [{
|
|
20583
20617
|
providedIn: 'root'
|
|
@@ -20604,10 +20638,10 @@ class ExportFormatterService {
|
|
|
20604
20638
|
}
|
|
20605
20639
|
}));
|
|
20606
20640
|
}
|
|
20607
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20608
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
20641
|
+
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 }); }
|
|
20642
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExportFormatterService, providedIn: 'root' }); }
|
|
20609
20643
|
}
|
|
20610
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20644
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ExportFormatterService, decorators: [{
|
|
20611
20645
|
type: Injectable,
|
|
20612
20646
|
args: [{
|
|
20613
20647
|
providedIn: 'root'
|
|
@@ -20627,10 +20661,10 @@ class HeaderTitleService {
|
|
|
20627
20661
|
return route;
|
|
20628
20662
|
}), filter((route) => route.outlet === 'primary'), mergeMap((route) => route.data));
|
|
20629
20663
|
}
|
|
20630
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20631
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
20664
|
+
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 }); }
|
|
20665
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HeaderTitleService, providedIn: 'root' }); }
|
|
20632
20666
|
}
|
|
20633
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20667
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HeaderTitleService, decorators: [{
|
|
20634
20668
|
type: Injectable,
|
|
20635
20669
|
args: [{
|
|
20636
20670
|
providedIn: 'root'
|
|
@@ -20663,10 +20697,10 @@ class IntercomService {
|
|
|
20663
20697
|
const connectionCredentials = this.initUser(user);
|
|
20664
20698
|
window.Intercom('boot', connectionCredentials);
|
|
20665
20699
|
}
|
|
20666
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20667
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
20700
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
20701
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IntercomService, providedIn: 'root' }); }
|
|
20668
20702
|
}
|
|
20669
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: IntercomService, decorators: [{
|
|
20670
20704
|
type: Injectable,
|
|
20671
20705
|
args: [{
|
|
20672
20706
|
providedIn: 'root'
|
|
@@ -20782,10 +20816,10 @@ class PdfFromDomElementService {
|
|
|
20782
20816
|
idoc.head.appendChild(clone);
|
|
20783
20817
|
});
|
|
20784
20818
|
}
|
|
20785
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20786
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
20819
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
20820
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' }); }
|
|
20787
20821
|
}
|
|
20788
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20822
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDomElementService, decorators: [{
|
|
20789
20823
|
type: Injectable,
|
|
20790
20824
|
args: [{
|
|
20791
20825
|
providedIn: 'root'
|
|
@@ -20901,10 +20935,10 @@ class PdfFromTableService {
|
|
|
20901
20935
|
startY: lastTableCoords + FILE_SETTINGS.titleCoords.top / 2,
|
|
20902
20936
|
});
|
|
20903
20937
|
}
|
|
20904
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20905
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
20938
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
20939
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromTableService, providedIn: 'root' }); }
|
|
20906
20940
|
}
|
|
20907
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20941
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromTableService, decorators: [{
|
|
20908
20942
|
type: Injectable,
|
|
20909
20943
|
args: [{
|
|
20910
20944
|
providedIn: 'root'
|
|
@@ -20946,10 +20980,10 @@ class PdfFromDataTableService extends PdfFromTableService {
|
|
|
20946
20980
|
});
|
|
20947
20981
|
return pdf;
|
|
20948
20982
|
}
|
|
20949
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
20950
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
20983
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
20984
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' }); }
|
|
20951
20985
|
}
|
|
20952
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
20986
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromDataTableService, decorators: [{
|
|
20953
20987
|
type: Injectable,
|
|
20954
20988
|
args: [{
|
|
20955
20989
|
providedIn: 'root'
|
|
@@ -20998,10 +21032,10 @@ class PdfFromHtmlTableService extends PdfFromTableService {
|
|
|
20998
21032
|
Array.from(caption.children).map((node) => node.textContent).join('\n') :
|
|
20999
21033
|
caption.innerText;
|
|
21000
21034
|
}
|
|
21001
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
21002
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
21035
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
21036
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' }); }
|
|
21003
21037
|
}
|
|
21004
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
21038
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
|
|
21005
21039
|
type: Injectable,
|
|
21006
21040
|
args: [{
|
|
21007
21041
|
providedIn: 'root'
|
|
@@ -21025,10 +21059,10 @@ class PreloaderService {
|
|
|
21025
21059
|
activePreloaders = activePreloaders.filter((preloader) => preloader !== endpoint);
|
|
21026
21060
|
this.activePreloaders.next(activePreloaders);
|
|
21027
21061
|
}
|
|
21028
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
21029
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
21062
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
21063
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderService, providedIn: 'root' }); }
|
|
21030
21064
|
}
|
|
21031
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
21065
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderService, decorators: [{
|
|
21032
21066
|
type: Injectable,
|
|
21033
21067
|
args: [{
|
|
21034
21068
|
providedIn: 'root'
|
|
@@ -21066,10 +21100,10 @@ class CorelogicService {
|
|
|
21066
21100
|
return throwError(() => error);
|
|
21067
21101
|
}));
|
|
21068
21102
|
}
|
|
21069
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
21070
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
21103
|
+
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 }); }
|
|
21104
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicService, providedIn: 'root' }); }
|
|
21071
21105
|
}
|
|
21072
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
21106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicService, decorators: [{
|
|
21073
21107
|
type: Injectable,
|
|
21074
21108
|
args: [{
|
|
21075
21109
|
providedIn: 'root'
|
|
@@ -21098,10 +21132,10 @@ class EquityPositionChartService {
|
|
|
21098
21132
|
}))
|
|
21099
21133
|
}))));
|
|
21100
21134
|
}
|
|
21101
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
21102
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
21135
|
+
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 }); }
|
|
21136
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' }); }
|
|
21103
21137
|
}
|
|
21104
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
21138
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EquityPositionChartService, decorators: [{
|
|
21105
21139
|
type: Injectable,
|
|
21106
21140
|
args: [{
|
|
21107
21141
|
providedIn: 'root'
|
|
@@ -21264,10 +21298,10 @@ class PropertyCalculationService {
|
|
|
21264
21298
|
return new Badge('Monitoring performance');
|
|
21265
21299
|
}
|
|
21266
21300
|
}
|
|
21267
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
21268
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
21301
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
21302
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' }); }
|
|
21269
21303
|
}
|
|
21270
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
21304
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyCalculationService, decorators: [{
|
|
21271
21305
|
type: Injectable,
|
|
21272
21306
|
args: [{
|
|
21273
21307
|
providedIn: 'root'
|
|
@@ -21325,10 +21359,10 @@ class PropertyTransactionReportService {
|
|
|
21325
21359
|
getDepreciations() {
|
|
21326
21360
|
return this.depreciationService.get().pipe(map((depreciations) => depreciations.getByChartAccountsCategories(CHART_ACCOUNTS_CATEGORIES.property)));
|
|
21327
21361
|
}
|
|
21328
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
21329
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
21362
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyTransactionReportService, deps: [{ token: PropertyService }, { token: TransactionService }, { token: DepreciationService }, { token: ChartAccountsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
21363
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' }); }
|
|
21330
21364
|
}
|
|
21331
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
21365
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
|
|
21332
21366
|
type: Injectable,
|
|
21333
21367
|
args: [{
|
|
21334
21368
|
providedIn: 'root'
|
|
@@ -21348,10 +21382,10 @@ class CurrentFirmBranchService {
|
|
|
21348
21382
|
set(firmBranches) {
|
|
21349
21383
|
this.firmBranchIds$.next(firmBranches.map(branch => branch.id));
|
|
21350
21384
|
}
|
|
21351
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
21352
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
21385
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrentFirmBranchService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
21386
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrentFirmBranchService, providedIn: 'root' }); }
|
|
21353
21387
|
}
|
|
21354
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
21388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CurrentFirmBranchService, decorators: [{
|
|
21355
21389
|
type: Injectable,
|
|
21356
21390
|
args: [{
|
|
21357
21391
|
providedIn: 'root'
|
|
@@ -21449,10 +21483,10 @@ class XlsxService {
|
|
|
21449
21483
|
});
|
|
21450
21484
|
FileSaver.saveAs(data, `${fileName}.xlsx`);
|
|
21451
21485
|
}
|
|
21452
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
21453
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
21486
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
21487
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: XlsxService, providedIn: 'root' }); }
|
|
21454
21488
|
}
|
|
21455
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
21489
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: XlsxService, decorators: [{
|
|
21456
21490
|
type: Injectable,
|
|
21457
21491
|
args: [{
|
|
21458
21492
|
providedIn: 'root'
|
|
@@ -21486,10 +21520,10 @@ class CorelogicInterceptor {
|
|
|
21486
21520
|
}
|
|
21487
21521
|
});
|
|
21488
21522
|
}
|
|
21489
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
21490
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
21523
|
+
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 }); }
|
|
21524
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicInterceptor }); }
|
|
21491
21525
|
}
|
|
21492
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
21526
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CorelogicInterceptor, decorators: [{
|
|
21493
21527
|
type: Injectable
|
|
21494
21528
|
}], ctorParameters: () => [{ type: CorelogicService }, { type: undefined, decorators: [{
|
|
21495
21529
|
type: Inject,
|
|
@@ -21525,10 +21559,10 @@ class FinancialYearInterceptor {
|
|
|
21525
21559
|
}
|
|
21526
21560
|
return next.handle(clonedReq);
|
|
21527
21561
|
}
|
|
21528
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
21529
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
21562
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
21563
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearInterceptor }); }
|
|
21530
21564
|
}
|
|
21531
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
21565
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
|
|
21532
21566
|
type: Injectable
|
|
21533
21567
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
21534
21568
|
type: Inject,
|
|
@@ -21562,10 +21596,10 @@ class UserSwitcherInterceptor {
|
|
|
21562
21596
|
intercept(request, next) {
|
|
21563
21597
|
return next.handle(this.switch(request, this.userSwitcherService.get()));
|
|
21564
21598
|
}
|
|
21565
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
21566
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
21599
|
+
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 }); }
|
|
21600
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherInterceptor }); }
|
|
21567
21601
|
}
|
|
21568
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
21602
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
|
|
21569
21603
|
type: Injectable
|
|
21570
21604
|
}], ctorParameters: () => [{ type: UserSwitcherService }, { type: undefined, decorators: [{
|
|
21571
21605
|
type: Inject,
|
|
@@ -21916,10 +21950,10 @@ class PreloaderInterceptor {
|
|
|
21916
21950
|
findEndpoint(requestPath) {
|
|
21917
21951
|
return Object.values(ENDPOINTS).find((endpoint) => endpoint.test(requestPath));
|
|
21918
21952
|
}
|
|
21919
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
21920
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
21953
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
21954
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderInterceptor }); }
|
|
21921
21955
|
}
|
|
21922
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
21956
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PreloaderInterceptor, decorators: [{
|
|
21923
21957
|
type: Injectable
|
|
21924
21958
|
}], ctorParameters: () => [{ type: PreloaderService }] });
|
|
21925
21959
|
|
|
@@ -21944,10 +21978,10 @@ class BasiqTokenInterceptor {
|
|
|
21944
21978
|
}
|
|
21945
21979
|
});
|
|
21946
21980
|
}
|
|
21947
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
21948
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
21981
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenInterceptor, deps: [{ token: BasiqTokenService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
21982
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenInterceptor }); }
|
|
21949
21983
|
}
|
|
21950
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
21984
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenInterceptor, decorators: [{
|
|
21951
21985
|
type: Injectable
|
|
21952
21986
|
}], ctorParameters: () => [{ type: BasiqTokenService }] });
|
|
21953
21987
|
|
|
@@ -21970,10 +22004,10 @@ class BasiqClientIdInterceptor {
|
|
|
21970
22004
|
url: request.url.replace('null', basiqClientId)
|
|
21971
22005
|
});
|
|
21972
22006
|
}
|
|
21973
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
21974
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
22007
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqClientIdInterceptor, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
22008
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqClientIdInterceptor }); }
|
|
21975
22009
|
}
|
|
21976
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
22010
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqClientIdInterceptor, decorators: [{
|
|
21977
22011
|
type: Injectable
|
|
21978
22012
|
}], ctorParameters: () => [{ type: UserService }] });
|
|
21979
22013
|
|
|
@@ -22008,10 +22042,10 @@ class RewardfulInterceptor {
|
|
|
22008
22042
|
&& (window['Rewardful'].referral || window['Rewardful'].coupon?.id)
|
|
22009
22043
|
&& registrationUrls.some(registrationUrl => request.url.includes(registrationUrl));
|
|
22010
22044
|
}
|
|
22011
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
22012
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
22045
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RewardfulInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
22046
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RewardfulInterceptor }); }
|
|
22013
22047
|
}
|
|
22014
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
22048
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: RewardfulInterceptor, decorators: [{
|
|
22015
22049
|
type: Injectable
|
|
22016
22050
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
22017
22051
|
type: Inject,
|
|
@@ -22040,10 +22074,10 @@ class AussieInterceptor {
|
|
|
22040
22074
|
}
|
|
22041
22075
|
});
|
|
22042
22076
|
}
|
|
22043
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
22044
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
22077
|
+
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 }); }
|
|
22078
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieInterceptor }); }
|
|
22045
22079
|
}
|
|
22046
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
22080
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AussieInterceptor, decorators: [{
|
|
22047
22081
|
type: Injectable
|
|
22048
22082
|
}], ctorParameters: () => [{ type: AussieService }, { type: undefined, decorators: [{
|
|
22049
22083
|
type: Inject,
|
|
@@ -22082,10 +22116,10 @@ class AdBlockErrorInterceptor {
|
|
|
22082
22116
|
}
|
|
22083
22117
|
return next.handle(request);
|
|
22084
22118
|
}
|
|
22085
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
22086
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
22119
|
+
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 }); }
|
|
22120
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdBlockErrorInterceptor }); }
|
|
22087
22121
|
}
|
|
22088
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
22122
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AdBlockErrorInterceptor, decorators: [{
|
|
22089
22123
|
type: Injectable
|
|
22090
22124
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
22091
22125
|
type: Inject,
|
|
@@ -22096,9 +22130,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
22096
22130
|
}] }] });
|
|
22097
22131
|
|
|
22098
22132
|
class InterceptorsModule {
|
|
22099
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
22100
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.
|
|
22101
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.
|
|
22133
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
22134
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule }); }
|
|
22135
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, providers: [
|
|
22102
22136
|
{
|
|
22103
22137
|
provide: HTTP_INTERCEPTORS,
|
|
22104
22138
|
useClass: CorelogicInterceptor,
|
|
@@ -22151,7 +22185,7 @@ class InterceptorsModule {
|
|
|
22151
22185
|
}
|
|
22152
22186
|
] }); }
|
|
22153
22187
|
}
|
|
22154
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
22188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: InterceptorsModule, decorators: [{
|
|
22155
22189
|
type: NgModule,
|
|
22156
22190
|
args: [{
|
|
22157
22191
|
providers: [
|
|
@@ -22213,13 +22247,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
22213
22247
|
* https://angular.io/guide/creating-libraries
|
|
22214
22248
|
*/
|
|
22215
22249
|
class CoreModule {
|
|
22216
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
22217
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.
|
|
22250
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
22251
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
|
|
22218
22252
|
InterceptorsModule] }); }
|
|
22219
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.
|
|
22253
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
|
|
22220
22254
|
InterceptorsModule] }); }
|
|
22221
22255
|
}
|
|
22222
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
22256
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CoreModule, decorators: [{
|
|
22223
22257
|
type: NgModule,
|
|
22224
22258
|
args: [{
|
|
22225
22259
|
declarations: [],
|
|
@@ -22239,10 +22273,10 @@ class AppCurrencyPipe extends CurrencyPipe {
|
|
|
22239
22273
|
digitsInfo = digitsInfo ?? '1.0-' + (value.toString().match(/[1-9]/)?.index || 2);
|
|
22240
22274
|
return super.transform(value, currencyCode, display, digitsInfo, locale);
|
|
22241
22275
|
}
|
|
22242
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
22243
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.
|
|
22276
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppCurrencyPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
22277
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: AppCurrencyPipe, isStandalone: true, name: "appCurrency" }); }
|
|
22244
22278
|
}
|
|
22245
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
22279
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppCurrencyPipe, decorators: [{
|
|
22246
22280
|
type: Pipe,
|
|
22247
22281
|
args: [{
|
|
22248
22282
|
name: 'appCurrency',
|
|
@@ -22257,10 +22291,10 @@ class SafeUrlPipe {
|
|
|
22257
22291
|
transform(url) {
|
|
22258
22292
|
return this.sanitizer.bypassSecurityTrustResourceUrl(url);
|
|
22259
22293
|
}
|
|
22260
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
22261
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.
|
|
22294
|
+
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 }); }
|
|
22295
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
|
|
22262
22296
|
}
|
|
22263
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
22297
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SafeUrlPipe, decorators: [{
|
|
22264
22298
|
type: Pipe,
|
|
22265
22299
|
args: [{
|
|
22266
22300
|
name: 'safeUrl',
|
|
@@ -22275,10 +22309,10 @@ class AppPercentPipe {
|
|
|
22275
22309
|
transform(value, total, floor) {
|
|
22276
22310
|
return this.percentagePipe.transform(value, total, floor) + '%';
|
|
22277
22311
|
}
|
|
22278
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
22279
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.
|
|
22312
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppPercentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
22313
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.10", ngImport: i0, type: AppPercentPipe, isStandalone: true, name: "percentage" }); }
|
|
22280
22314
|
}
|
|
22281
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
22315
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AppPercentPipe, decorators: [{
|
|
22282
22316
|
type: Pipe,
|
|
22283
22317
|
args: [{
|
|
22284
22318
|
name: 'percentage',
|
|
@@ -22631,10 +22665,10 @@ class BusinessResolver {
|
|
|
22631
22665
|
resolve() {
|
|
22632
22666
|
return this.soleDetailsService.getFirst();
|
|
22633
22667
|
}
|
|
22634
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
22635
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
22668
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
22669
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessResolver, providedIn: 'root' }); }
|
|
22636
22670
|
}
|
|
22637
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
22671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BusinessResolver, decorators: [{
|
|
22638
22672
|
type: Injectable,
|
|
22639
22673
|
args: [{ providedIn: 'root' }]
|
|
22640
22674
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
|
@@ -22646,10 +22680,10 @@ class SoleDetailsResolver {
|
|
|
22646
22680
|
resolve() {
|
|
22647
22681
|
return this.soleDetails.getFirst();
|
|
22648
22682
|
}
|
|
22649
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
22650
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
22683
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
22684
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsResolver, providedIn: 'root' }); }
|
|
22651
22685
|
}
|
|
22652
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
22686
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: SoleDetailsResolver, decorators: [{
|
|
22653
22687
|
type: Injectable,
|
|
22654
22688
|
args: [{ providedIn: 'root' }]
|
|
22655
22689
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
|
@@ -23361,10 +23395,10 @@ class UniqueEmailValidator {
|
|
|
23361
23395
|
validate(control) {
|
|
23362
23396
|
return this.userService.search(control.value).pipe(map(user => user ? { emailIsUsed: true } : null));
|
|
23363
23397
|
}
|
|
23364
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
23365
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
23398
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UniqueEmailValidator, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23399
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UniqueEmailValidator, providedIn: 'root' }); }
|
|
23366
23400
|
}
|
|
23367
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
23401
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: UniqueEmailValidator, decorators: [{
|
|
23368
23402
|
type: Injectable,
|
|
23369
23403
|
args: [{ providedIn: 'root' }]
|
|
23370
23404
|
}], ctorParameters: () => [{ type: UserService }] });
|
|
@@ -23772,10 +23806,10 @@ class ClientMovementForm extends AbstractForm {
|
|
|
23772
23806
|
firmBranch: new FormControl(clientMovement.firmBranch, [Validators.required]),
|
|
23773
23807
|
}, clientMovement);
|
|
23774
23808
|
}
|
|
23775
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
23776
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
23809
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementForm, deps: [{ token: ClientMovement }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23810
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementForm, providedIn: 'root' }); }
|
|
23777
23811
|
}
|
|
23778
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
23812
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: ClientMovementForm, decorators: [{
|
|
23779
23813
|
type: Injectable,
|
|
23780
23814
|
args: [{
|
|
23781
23815
|
providedIn: 'root'
|
|
@@ -23788,10 +23822,10 @@ class EmployeeDetailsForm extends AbstractForm {
|
|
|
23788
23822
|
firmBranches: new FormControl(employeeDetails.firmBranches, [Validators.required]),
|
|
23789
23823
|
}, employeeDetails);
|
|
23790
23824
|
}
|
|
23791
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
23792
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
23825
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeDetailsForm, deps: [{ token: EmployeeDetails }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23826
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeDetailsForm, providedIn: 'root' }); }
|
|
23793
23827
|
}
|
|
23794
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
23828
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: EmployeeDetailsForm, decorators: [{
|
|
23795
23829
|
type: Injectable,
|
|
23796
23830
|
args: [{
|
|
23797
23831
|
providedIn: 'root'
|
|
@@ -27076,5 +27110,5 @@ var MessagesEnum;
|
|
|
27076
27110
|
* Generated bundle index. Do not edit.
|
|
27077
27111
|
*/
|
|
27078
27112
|
|
|
27079
|
-
export { ADBLOCK_ERROR_HTML, ADBLOCK_ERROR_HTML_VALUE, AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockDetectorService, Address, AddressForm, AddressService, 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, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionComment, BankTransactionCommentForm, BankTransactionCommentMessagesEnum, BankTransactionCommentService, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetCollection, BudgetForm, BudgetMessagesEnum, BudgetMetadataInterface, BudgetRule, BudgetRuleCollection, BudgetRuleForm, BudgetRuleService, BudgetService, BudgetTypeEnum, BusinessChartAccountsEnum, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, 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, CorelogicSuggestion, Country, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DailyFrequencyEnum, 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, 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, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeReportItem, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, 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, MoneyScheduleItem, 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, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, 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, 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, ServicePriceListEnum, 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, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, 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, 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, VehicleClaimDetails, VehicleClaimDetailsForm, VehicleClaimDetailsMethodEnum, VehicleClaimDetailsService, VehicleClaimForm, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, YoutubeVideosEnum, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanControlValidator, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
|
|
27113
|
+
export { ADBLOCK_ERROR_HTML, ADBLOCK_ERROR_HTML_VALUE, AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockDetectorService, Address, AddressForm, AddressService, 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, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionComment, BankTransactionCommentForm, BankTransactionCommentMessagesEnum, BankTransactionCommentService, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetCollection, BudgetForm, BudgetMessagesEnum, BudgetMetadataInterface, BudgetReportItem, BudgetReportItemCollection, BudgetRule, BudgetRuleCollection, BudgetRuleForm, BudgetRuleService, BudgetService, BudgetTypeEnum, BusinessChartAccountsEnum, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, 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, CorelogicSuggestion, Country, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DailyFrequencyEnum, 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, 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, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeReportItem, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, 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, MoneyScheduleItem, 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, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, 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, 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, ServicePriceListEnum, 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, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, 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, 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, VehicleClaimDetails, VehicleClaimDetailsForm, VehicleClaimDetailsMethodEnum, VehicleClaimDetailsService, VehicleClaimForm, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, YoutubeVideosEnum, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanControlValidator, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
|
|
27080
27114
|
//# sourceMappingURL=taxtank-core.mjs.map
|