taxtank-core 2.0.35 → 2.0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/fesm2022/taxtank-core-common.mjs +20 -20
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +535 -460
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +54 -10
- package/index.d.ts.map +1 -0
- 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.2.4", 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.2.4", 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.2.4", 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.2.4", 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.2.4", 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.2.4", ngImport: i0, type: PdfService, decorators: [{
|
134
134
|
type: Injectable,
|
135
135
|
args: [{
|
136
136
|
providedIn: 'root'
|
@@ -9758,6 +9758,12 @@ class ClientPortfolioReportCollection extends Collection {
|
|
9758
9758
|
}
|
9759
9759
|
}
|
9760
9760
|
|
9761
|
+
class FinancialGoalCollection extends Collection {
|
9762
|
+
getActive() {
|
9763
|
+
return this.filterBy('status', FinancialGoalStatusEnum.ACTIVE);
|
9764
|
+
}
|
9765
|
+
}
|
9766
|
+
|
9761
9767
|
/**
|
9762
9768
|
* Collection of income sources
|
9763
9769
|
*/
|
@@ -11435,7 +11441,37 @@ __decorate([
|
|
11435
11441
|
class BudgetMetadataInterface {
|
11436
11442
|
}
|
11437
11443
|
|
11444
|
+
var FinancialGoalPaymentFrequencyEnum;
|
11445
|
+
(function (FinancialGoalPaymentFrequencyEnum) {
|
11446
|
+
FinancialGoalPaymentFrequencyEnum[FinancialGoalPaymentFrequencyEnum["MONTHLY"] = 1] = "MONTHLY";
|
11447
|
+
FinancialGoalPaymentFrequencyEnum[FinancialGoalPaymentFrequencyEnum["FORTNIGHTLY"] = 2] = "FORTNIGHTLY";
|
11448
|
+
FinancialGoalPaymentFrequencyEnum[FinancialGoalPaymentFrequencyEnum["WEEKLY"] = 3] = "WEEKLY";
|
11449
|
+
})(FinancialGoalPaymentFrequencyEnum || (FinancialGoalPaymentFrequencyEnum = {}));
|
11450
|
+
|
11451
|
+
var FinancialGoalTypeEnum;
|
11452
|
+
(function (FinancialGoalTypeEnum) {
|
11453
|
+
FinancialGoalTypeEnum[FinancialGoalTypeEnum["DEBIT"] = 1] = "DEBIT";
|
11454
|
+
FinancialGoalTypeEnum[FinancialGoalTypeEnum["CREDIT"] = 2] = "CREDIT";
|
11455
|
+
FinancialGoalTypeEnum[FinancialGoalTypeEnum["PROPERTY_EQUITY"] = 3] = "PROPERTY_EQUITY";
|
11456
|
+
FinancialGoalTypeEnum[FinancialGoalTypeEnum["PROPERTY_LVR"] = 4] = "PROPERTY_LVR";
|
11457
|
+
})(FinancialGoalTypeEnum || (FinancialGoalTypeEnum = {}));
|
11458
|
+
|
11459
|
+
var FinancialGoalStatusEnum;
|
11460
|
+
(function (FinancialGoalStatusEnum) {
|
11461
|
+
FinancialGoalStatusEnum[FinancialGoalStatusEnum["ACTIVE"] = 1] = "ACTIVE";
|
11462
|
+
FinancialGoalStatusEnum[FinancialGoalStatusEnum["PAUSE"] = 2] = "PAUSE";
|
11463
|
+
FinancialGoalStatusEnum[FinancialGoalStatusEnum["COMPLETE"] = 3] = "COMPLETE";
|
11464
|
+
})(FinancialGoalStatusEnum || (FinancialGoalStatusEnum = {}));
|
11465
|
+
|
11438
11466
|
class FinancialGoal extends AbstractModel {
|
11467
|
+
constructor() {
|
11468
|
+
super(...arguments);
|
11469
|
+
this.startDate = new Date();
|
11470
|
+
}
|
11471
|
+
/** Remaining amount to reach the goal */
|
11472
|
+
getRequiredAmount() {
|
11473
|
+
return this.targetValue - this.initialValue;
|
11474
|
+
}
|
11439
11475
|
}
|
11440
11476
|
__decorate([
|
11441
11477
|
Type(() => Date)
|
@@ -11445,7 +11481,7 @@ __decorate([
|
|
11445
11481
|
], FinancialGoal.prototype, "endDate", void 0);
|
11446
11482
|
__decorate([
|
11447
11483
|
Type(() => BankAccount)
|
11448
|
-
], FinancialGoal.prototype, "
|
11484
|
+
], FinancialGoal.prototype, "bankAccount", void 0);
|
11449
11485
|
__decorate([
|
11450
11486
|
Type(() => AppFile)
|
11451
11487
|
], FinancialGoal.prototype, "file", void 0);
|
@@ -11639,10 +11675,10 @@ class EventDispatcherService {
|
|
11639
11675
|
dispatch2(event) {
|
11640
11676
|
this.eventSubject2.next(event);
|
11641
11677
|
}
|
11642
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
11643
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
11678
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11679
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EventDispatcherService, providedIn: 'root' }); }
|
11644
11680
|
}
|
11645
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
11681
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EventDispatcherService, decorators: [{
|
11646
11682
|
type: Injectable,
|
11647
11683
|
args: [{
|
11648
11684
|
providedIn: 'root'
|
@@ -11677,10 +11713,10 @@ class SseService {
|
|
11677
11713
|
})
|
11678
11714
|
.pipe(map((messageEvent) => JSON.parse(messageEvent.data)));
|
11679
11715
|
}
|
11680
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
11681
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
11716
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SseService, deps: [{ token: i0.NgZone }, { token: i3.JwtService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11717
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SseService, providedIn: 'root' }); }
|
11682
11718
|
}
|
11683
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
11719
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SseService, decorators: [{
|
11684
11720
|
type: Injectable,
|
11685
11721
|
args: [{
|
11686
11722
|
providedIn: 'root'
|
@@ -11768,10 +11804,10 @@ class DataService {
|
|
11768
11804
|
setCache(data) {
|
11769
11805
|
this.cache = this.createCollectionInstance(this.collectionClass, data);
|
11770
11806
|
}
|
11771
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
11772
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
11807
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DataService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11808
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DataService, providedIn: 'root' }); }
|
11773
11809
|
}
|
11774
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
11810
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DataService, decorators: [{
|
11775
11811
|
type: Injectable,
|
11776
11812
|
args: [{
|
11777
11813
|
providedIn: 'root'
|
@@ -11839,10 +11875,10 @@ class ToastService {
|
|
11839
11875
|
message,
|
11840
11876
|
}));
|
11841
11877
|
}
|
11842
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
11843
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
11878
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11879
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ToastService, providedIn: 'root' }); }
|
11844
11880
|
}
|
11845
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
11881
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ToastService, decorators: [{
|
11846
11882
|
type: Injectable,
|
11847
11883
|
args: [{
|
11848
11884
|
providedIn: 'root'
|
@@ -12209,10 +12245,10 @@ let RestService$1 = class RestService extends DataService {
|
|
12209
12245
|
this.handleResponse([change.model], change.method);
|
12210
12246
|
});
|
12211
12247
|
}
|
12212
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12213
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12248
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12249
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
12214
12250
|
};
|
12215
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12251
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RestService$1, decorators: [{
|
12216
12252
|
type: Injectable,
|
12217
12253
|
args: [{
|
12218
12254
|
providedIn: 'root'
|
@@ -12352,10 +12388,10 @@ class BankAccountService extends RestService$1 {
|
|
12352
12388
|
}
|
12353
12389
|
});
|
12354
12390
|
}
|
12355
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12356
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12391
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankAccountService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: SseService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12392
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankAccountService, providedIn: 'root' }); }
|
12357
12393
|
}
|
12358
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12394
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankAccountService, decorators: [{
|
12359
12395
|
type: Injectable,
|
12360
12396
|
args: [{
|
12361
12397
|
providedIn: 'root'
|
@@ -12460,10 +12496,10 @@ class BankConnectionService extends RestService$1 {
|
|
12460
12496
|
}
|
12461
12497
|
});
|
12462
12498
|
}
|
12463
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12464
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12499
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankConnectionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12500
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankConnectionService, providedIn: 'root' }); }
|
12465
12501
|
}
|
12466
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankConnectionService, decorators: [{
|
12467
12503
|
type: Injectable,
|
12468
12504
|
args: [{
|
12469
12505
|
providedIn: 'root'
|
@@ -12529,10 +12565,10 @@ class BankTransactionService extends RestService$1 {
|
|
12529
12565
|
}
|
12530
12566
|
});
|
12531
12567
|
}
|
12532
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12533
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12568
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankTransactionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12569
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankTransactionService, providedIn: 'root' }); }
|
12534
12570
|
}
|
12535
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12571
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankTransactionService, decorators: [{
|
12536
12572
|
type: Injectable,
|
12537
12573
|
args: [{
|
12538
12574
|
providedIn: 'root'
|
@@ -12566,10 +12602,10 @@ class BasiqTokenService extends RestService$1 {
|
|
12566
12602
|
const now = new Date().getTime();
|
12567
12603
|
return new BasiqToken(tokenResponse['access_token'], new Date(now + tokenResponse['expires_in'] * 1000));
|
12568
12604
|
}
|
12569
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12570
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12605
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12606
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqTokenService, providedIn: 'root' }); }
|
12571
12607
|
}
|
12572
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12608
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqTokenService, decorators: [{
|
12573
12609
|
type: Injectable,
|
12574
12610
|
args: [{
|
12575
12611
|
providedIn: 'root'
|
@@ -12711,10 +12747,10 @@ class BasiqService extends RestService$1 {
|
|
12711
12747
|
}
|
12712
12748
|
});
|
12713
12749
|
}
|
12714
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12715
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12750
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: BankConnectionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12751
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqService, providedIn: 'root' }); }
|
12716
12752
|
}
|
12717
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12753
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqService, decorators: [{
|
12718
12754
|
type: Injectable,
|
12719
12755
|
args: [{
|
12720
12756
|
providedIn: 'root'
|
@@ -12742,10 +12778,10 @@ class BankTransactionCommentService extends RestService$1 {
|
|
12742
12778
|
this.endpointUri = 'bank-transaction-comments';
|
12743
12779
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
12744
12780
|
}
|
12745
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12746
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12781
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankTransactionCommentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12782
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankTransactionCommentService, providedIn: 'root' }); }
|
12747
12783
|
}
|
12748
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankTransactionCommentService, decorators: [{
|
12749
12785
|
type: Injectable,
|
12750
12786
|
args: [{
|
12751
12787
|
providedIn: 'root'
|
@@ -12771,10 +12807,10 @@ class BankService extends RestService$1 {
|
|
12771
12807
|
this.endpointUri = 'banks';
|
12772
12808
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
12773
12809
|
}
|
12774
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12775
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12810
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12811
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankService, providedIn: 'root' }); }
|
12776
12812
|
}
|
12777
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12813
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankService, decorators: [{
|
12778
12814
|
type: Injectable,
|
12779
12815
|
args: [{
|
12780
12816
|
providedIn: 'root'
|
@@ -12789,10 +12825,10 @@ class BudgetService extends RestService$1 {
|
|
12789
12825
|
this.endpointUri = 'budgets';
|
12790
12826
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
12791
12827
|
}
|
12792
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12793
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12828
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BudgetService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12829
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BudgetService, providedIn: 'root' }); }
|
12794
12830
|
}
|
12795
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12831
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BudgetService, decorators: [{
|
12796
12832
|
type: Injectable,
|
12797
12833
|
args: [{
|
12798
12834
|
providedIn: 'root'
|
@@ -12815,10 +12851,10 @@ class FinancialGoalService extends RestService$1 {
|
|
12815
12851
|
this.endpointUri = 'financial-goals';
|
12816
12852
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
12817
12853
|
}
|
12818
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12819
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12854
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialGoalService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12855
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialGoalService, providedIn: 'root' }); }
|
12820
12856
|
}
|
12821
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialGoalService, decorators: [{
|
12822
12858
|
type: Injectable,
|
12823
12859
|
args: [{
|
12824
12860
|
providedIn: 'root'
|
@@ -12836,10 +12872,10 @@ class ChartAccountsDepreciationService extends RestService$1 {
|
|
12836
12872
|
this.collectionClass = Collection;
|
12837
12873
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
12838
12874
|
}
|
12839
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12840
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12875
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12876
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' }); }
|
12841
12877
|
}
|
12842
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12878
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
|
12843
12879
|
type: Injectable,
|
12844
12880
|
args: [{
|
12845
12881
|
providedIn: 'root'
|
@@ -12878,10 +12914,10 @@ class ChartAccountsService extends RestService$1 {
|
|
12878
12914
|
return headings;
|
12879
12915
|
}));
|
12880
12916
|
}
|
12881
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12882
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
12917
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12918
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsService, providedIn: 'root' }); }
|
12883
12919
|
}
|
12884
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
12920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsService, decorators: [{
|
12885
12921
|
type: Injectable,
|
12886
12922
|
args: [{
|
12887
12923
|
providedIn: 'root'
|
@@ -12965,10 +13001,10 @@ class ChatService extends RestService$1 {
|
|
12965
13001
|
this.setCache(cache, true);
|
12966
13002
|
}, ['post']);
|
12967
13003
|
}
|
12968
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
12969
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13004
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChatService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13005
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChatService, providedIn: 'root' }); }
|
12970
13006
|
}
|
12971
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13007
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChatService, decorators: [{
|
12972
13008
|
type: Injectable,
|
12973
13009
|
args: [{
|
12974
13010
|
providedIn: 'root'
|
@@ -12998,10 +13034,10 @@ class MessageService extends RestService$1 {
|
|
12998
13034
|
getUnreadChatsAmount() {
|
12999
13035
|
return this.get().pipe(map((messages) => messages.getUnreadChatsAmount()));
|
13000
13036
|
}
|
13001
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13002
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13037
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MessageService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13038
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MessageService, providedIn: 'root' }); }
|
13003
13039
|
}
|
13004
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13040
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MessageService, decorators: [{
|
13005
13041
|
type: Injectable,
|
13006
13042
|
args: [{
|
13007
13043
|
providedIn: 'root'
|
@@ -13070,10 +13106,10 @@ class MessageDocumentService extends RestService$1 {
|
|
13070
13106
|
addBatch(chatId, files) {
|
13071
13107
|
return combineLatest(files.map((file) => this.add(chatId, file))).pipe(map((docsBase) => docsBase.map((docBase) => plainToClass(MessageDocument, docBase))));
|
13072
13108
|
}
|
13073
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13074
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13109
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MessageDocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13110
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MessageDocumentService, providedIn: 'root' }); }
|
13075
13111
|
}
|
13076
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13112
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MessageDocumentService, decorators: [{
|
13077
13113
|
type: Injectable,
|
13078
13114
|
args: [{
|
13079
13115
|
providedIn: 'root'
|
@@ -13168,10 +13204,10 @@ class DepreciationService extends RestService$1 {
|
|
13168
13204
|
this.refreshCache();
|
13169
13205
|
});
|
13170
13206
|
}
|
13171
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13172
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13207
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DepreciationService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13208
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DepreciationService, providedIn: 'root' }); }
|
13173
13209
|
}
|
13174
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13210
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DepreciationService, decorators: [{
|
13175
13211
|
type: Injectable,
|
13176
13212
|
args: [{
|
13177
13213
|
providedIn: 'root'
|
@@ -13193,10 +13229,10 @@ class DepreciationCapitalProjectService extends RestService$1 {
|
|
13193
13229
|
this.endpointUri = 'depreciation-capital-projects';
|
13194
13230
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
13195
13231
|
}
|
13196
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13197
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13232
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DepreciationCapitalProjectService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13233
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' }); }
|
13198
13234
|
}
|
13199
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13235
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
|
13200
13236
|
type: Injectable,
|
13201
13237
|
args: [{
|
13202
13238
|
providedIn: 'root'
|
@@ -13222,10 +13258,10 @@ class DocumentFolderService extends RestService$1 {
|
|
13222
13258
|
this.modelClass = DocumentFolder;
|
13223
13259
|
this.disabledMethods = ['deleteBatch', 'postBatch', 'putBatch'];
|
13224
13260
|
}
|
13225
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13226
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13261
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13262
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DocumentFolderService, providedIn: 'root' }); }
|
13227
13263
|
}
|
13228
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13264
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DocumentFolderService, decorators: [{
|
13229
13265
|
type: Injectable,
|
13230
13266
|
args: [{
|
13231
13267
|
providedIn: 'root'
|
@@ -13250,10 +13286,10 @@ class DocumentService extends RestService$1 {
|
|
13250
13286
|
postFiles(folder, files) {
|
13251
13287
|
return this.postParallel(files.map(file => plainToClass(Document, { folder, file })));
|
13252
13288
|
}
|
13253
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13254
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13289
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13290
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DocumentService, providedIn: 'root' }); }
|
13255
13291
|
}
|
13256
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13292
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: DocumentService, decorators: [{
|
13257
13293
|
type: Injectable,
|
13258
13294
|
args: [{
|
13259
13295
|
providedIn: 'root'
|
@@ -13338,10 +13374,10 @@ class FacebookService {
|
|
13338
13374
|
});
|
13339
13375
|
});
|
13340
13376
|
}
|
13341
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13342
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13377
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FacebookService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13378
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FacebookService, providedIn: 'root' }); }
|
13343
13379
|
}
|
13344
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13380
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FacebookService, decorators: [{
|
13345
13381
|
type: Injectable,
|
13346
13382
|
args: [{
|
13347
13383
|
providedIn: 'root'
|
@@ -13408,10 +13444,10 @@ class GoogleService {
|
|
13408
13444
|
logout() {
|
13409
13445
|
google.accounts.id.disableAutoSelect();
|
13410
13446
|
}
|
13411
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13412
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13447
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: GoogleService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13448
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: GoogleService, providedIn: 'root' }); }
|
13413
13449
|
}
|
13414
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: GoogleService, decorators: [{
|
13415
13451
|
type: Injectable,
|
13416
13452
|
args: [{
|
13417
13453
|
providedIn: 'root'
|
@@ -13443,10 +13479,10 @@ class FileService extends RestService$1 {
|
|
13443
13479
|
download(file) {
|
13444
13480
|
return this.http.get(`${this.apiUrl}/${file.id}/download`, { responseType: 'blob' });
|
13445
13481
|
}
|
13446
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13447
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13482
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13483
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FileService, providedIn: 'root' }); }
|
13448
13484
|
}
|
13449
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13485
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FileService, decorators: [{
|
13450
13486
|
type: Injectable,
|
13451
13487
|
args: [{
|
13452
13488
|
providedIn: 'root'
|
@@ -13536,10 +13572,10 @@ class ClientInviteService extends RestService$1 {
|
|
13536
13572
|
}
|
13537
13573
|
});
|
13538
13574
|
}
|
13539
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13540
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13575
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientInviteService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13576
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientInviteService, providedIn: 'root' }); }
|
13541
13577
|
}
|
13542
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13578
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientInviteService, decorators: [{
|
13543
13579
|
type: Injectable,
|
13544
13580
|
args: [{
|
13545
13581
|
providedIn: 'root'
|
@@ -13629,10 +13665,10 @@ class ClientMovementService extends RestService$1 {
|
|
13629
13665
|
// this.updateCache([clientMovement], 'delete');
|
13630
13666
|
}));
|
13631
13667
|
}
|
13632
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13633
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13668
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13669
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientMovementService, providedIn: 'root' }); }
|
13634
13670
|
}
|
13635
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientMovementService, decorators: [{
|
13636
13672
|
type: Injectable,
|
13637
13673
|
args: [{
|
13638
13674
|
providedIn: 'root'
|
@@ -13693,10 +13729,10 @@ class EmployeeService extends RestService$1 {
|
|
13693
13729
|
index === -1 ? employee.roles.push(role) : employee.roles.splice(index, 1);
|
13694
13730
|
return super.put(employee, `${this.environment.apiV2}/${this.endpointUri}/${employee.id}`);
|
13695
13731
|
}
|
13696
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13697
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13732
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13733
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeService, providedIn: 'root' }); }
|
13698
13734
|
}
|
13699
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13735
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeService, decorators: [{
|
13700
13736
|
type: Injectable,
|
13701
13737
|
args: [{
|
13702
13738
|
providedIn: 'root'
|
@@ -13757,10 +13793,10 @@ class EmployeeInviteService extends RestService$1 {
|
|
13757
13793
|
return updatedInvite;
|
13758
13794
|
}));
|
13759
13795
|
}
|
13760
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13761
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13796
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13797
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' }); }
|
13762
13798
|
}
|
13763
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13799
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeInviteService, decorators: [{
|
13764
13800
|
type: Injectable,
|
13765
13801
|
args: [{
|
13766
13802
|
providedIn: 'root'
|
@@ -13784,10 +13820,10 @@ class ClientPortfolioReportService {
|
|
13784
13820
|
return new ClientPortfolioReportCollection(clientReports);
|
13785
13821
|
}));
|
13786
13822
|
}
|
13787
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13788
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13823
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientPortfolioReportService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13824
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' }); }
|
13789
13825
|
}
|
13790
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13826
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
|
13791
13827
|
type: Injectable,
|
13792
13828
|
args: [{
|
13793
13829
|
providedIn: 'root'
|
@@ -13841,10 +13877,10 @@ class FirmService {
|
|
13841
13877
|
getByType(type) {
|
13842
13878
|
return this.getAll().pipe(map((firms) => firms.filter((firm) => firm.type === type)));
|
13843
13879
|
}
|
13844
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13845
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13880
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FirmService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13881
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FirmService, providedIn: 'root' }); }
|
13846
13882
|
}
|
13847
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FirmService, decorators: [{
|
13848
13884
|
type: Injectable,
|
13849
13885
|
args: [{
|
13850
13886
|
providedIn: 'root'
|
@@ -13862,10 +13898,10 @@ class FirmBranchService extends RestService$1 {
|
|
13862
13898
|
this.collectionClass = (Collection);
|
13863
13899
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
13864
13900
|
}
|
13865
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
13866
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
13901
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FirmBranchService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13902
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FirmBranchService, providedIn: 'root' }); }
|
13867
13903
|
}
|
13868
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
13904
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FirmBranchService, decorators: [{
|
13869
13905
|
type: Injectable,
|
13870
13906
|
args: [{
|
13871
13907
|
providedIn: 'root'
|
@@ -14106,10 +14142,10 @@ class RestService {
|
|
14106
14142
|
getCache() {
|
14107
14143
|
return clone(this.cache);
|
14108
14144
|
}
|
14109
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14110
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14145
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14146
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
14111
14147
|
}
|
14112
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14148
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RestService, decorators: [{
|
14113
14149
|
type: Injectable,
|
14114
14150
|
args: [{
|
14115
14151
|
providedIn: 'root'
|
@@ -14184,10 +14220,10 @@ class IncomeSourceForecastService extends RestService {
|
|
14184
14220
|
return incomeSource.incomeSourceForecasts;
|
14185
14221
|
}).flat();
|
14186
14222
|
}
|
14187
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14188
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14223
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14224
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' }); }
|
14189
14225
|
}
|
14190
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
|
14191
14227
|
type: Injectable,
|
14192
14228
|
args: [{
|
14193
14229
|
providedIn: 'root'
|
@@ -14261,10 +14297,10 @@ class SalaryForecastService extends RestService {
|
|
14261
14297
|
return incomeSource.salaryForecasts;
|
14262
14298
|
}).flat();
|
14263
14299
|
}
|
14264
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14265
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14300
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SalaryForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14301
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SalaryForecastService, providedIn: 'root' }); }
|
14266
14302
|
}
|
14267
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SalaryForecastService, decorators: [{
|
14268
14304
|
type: Injectable,
|
14269
14305
|
args: [{
|
14270
14306
|
providedIn: 'root'
|
@@ -14346,10 +14382,10 @@ class SoleForecastService extends RestService {
|
|
14346
14382
|
this.refreshCache();
|
14347
14383
|
});
|
14348
14384
|
}
|
14349
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14350
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14385
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14386
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleForecastService, providedIn: 'root' }); }
|
14351
14387
|
}
|
14352
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleForecastService, decorators: [{
|
14353
14389
|
type: Injectable,
|
14354
14390
|
args: [{
|
14355
14391
|
providedIn: 'root'
|
@@ -14432,10 +14468,10 @@ class IncomeSourceService extends RestService {
|
|
14432
14468
|
this.refreshCache();
|
14433
14469
|
});
|
14434
14470
|
}
|
14435
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14436
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14471
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14472
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceService, providedIn: 'root' }); }
|
14437
14473
|
}
|
14438
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14474
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceService, decorators: [{
|
14439
14475
|
type: Injectable,
|
14440
14476
|
args: [{
|
14441
14477
|
providedIn: 'root'
|
@@ -14508,10 +14544,10 @@ class BorrowingExpenseService {
|
|
14508
14544
|
return combinedBorrowingExpenses;
|
14509
14545
|
}));
|
14510
14546
|
}
|
14511
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14512
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14547
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BorrowingExpenseService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14548
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' }); }
|
14513
14549
|
}
|
14514
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14550
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BorrowingExpenseService, decorators: [{
|
14515
14551
|
type: Injectable,
|
14516
14552
|
args: [{
|
14517
14553
|
providedIn: 'root'
|
@@ -14595,10 +14631,10 @@ class LoanService extends RestService$1 {
|
|
14595
14631
|
delete(loan) {
|
14596
14632
|
return super.delete(loan, `${this.environment.apiV2}/loans/${loan.id}`);
|
14597
14633
|
}
|
14598
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14599
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14634
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: LoanService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14635
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: LoanService, providedIn: 'root' }); }
|
14600
14636
|
}
|
14601
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14637
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: LoanService, decorators: [{
|
14602
14638
|
type: Injectable,
|
14603
14639
|
args: [{
|
14604
14640
|
providedIn: 'root'
|
@@ -14624,10 +14660,10 @@ class BorrowingReportService extends RestService$1 {
|
|
14624
14660
|
this.collectionClass = Collection;
|
14625
14661
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
14626
14662
|
}
|
14627
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14628
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14663
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BorrowingReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14664
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BorrowingReportService, providedIn: 'root' }); }
|
14629
14665
|
}
|
14630
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14666
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BorrowingReportService, decorators: [{
|
14631
14667
|
type: Injectable,
|
14632
14668
|
args: [{
|
14633
14669
|
providedIn: 'root'
|
@@ -14652,10 +14688,10 @@ class PropertyCategoryService extends RestService$1 {
|
|
14652
14688
|
this.endpointUri = 'properties/categories';
|
14653
14689
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
14654
14690
|
}
|
14655
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14656
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14691
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14692
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' }); }
|
14657
14693
|
}
|
14658
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14694
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCategoryService, decorators: [{
|
14659
14695
|
type: Injectable,
|
14660
14696
|
args: [{
|
14661
14697
|
providedIn: 'root'
|
@@ -14677,10 +14713,10 @@ class PropertyCategoryMovementService extends RestService$1 {
|
|
14677
14713
|
this.listenCSE(Property, this.refreshCache, ['post']);
|
14678
14714
|
this.listenCSE(PropertyValuation, this.refreshCache);
|
14679
14715
|
}
|
14680
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14681
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14716
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCategoryMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14717
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' }); }
|
14682
14718
|
}
|
14683
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14719
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
|
14684
14720
|
type: Injectable,
|
14685
14721
|
args: [{
|
14686
14722
|
providedIn: 'root'
|
@@ -14761,10 +14797,10 @@ class TaxExemptionService extends DataService {
|
|
14761
14797
|
this.collectionClass = TaxExemptionCollection;
|
14762
14798
|
this.setCache(TaxExemptions);
|
14763
14799
|
}
|
14764
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14765
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14800
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxExemptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14801
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxExemptionService, providedIn: 'root' }); }
|
14766
14802
|
}
|
14767
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14803
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxExemptionService, decorators: [{
|
14768
14804
|
type: Injectable,
|
14769
14805
|
args: [{
|
14770
14806
|
providedIn: 'root'
|
@@ -14780,10 +14816,10 @@ class PropertySaleService extends RestService$1 {
|
|
14780
14816
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
14781
14817
|
this.roles = [UserRolesEnum$1.PROPERTY_TANK];
|
14782
14818
|
}
|
14783
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14784
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14819
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14820
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertySaleService, providedIn: 'root' }); }
|
14785
14821
|
}
|
14786
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14822
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertySaleService, decorators: [{
|
14787
14823
|
type: Injectable,
|
14788
14824
|
args: [{
|
14789
14825
|
providedIn: 'root'
|
@@ -14837,10 +14873,10 @@ class PropertyShareService extends RestService$1 {
|
|
14837
14873
|
listenSalesChanges() {
|
14838
14874
|
this.listenCSE(PropertySale, this.refreshCache, ['post', 'delete']);
|
14839
14875
|
}
|
14840
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14841
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14876
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyShareService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14877
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyShareService, providedIn: 'root' }); }
|
14842
14878
|
}
|
14843
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14879
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyShareService, decorators: [{
|
14844
14880
|
type: Injectable,
|
14845
14881
|
args: [{
|
14846
14882
|
providedIn: 'root'
|
@@ -14859,10 +14895,10 @@ class PropertyValuationService extends RestService$1 {
|
|
14859
14895
|
this.disabledMethods = ['postBatch', 'putBatch'];
|
14860
14896
|
this.useBackendError = true;
|
14861
14897
|
}
|
14862
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
14863
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
14898
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyValuationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14899
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyValuationService, providedIn: 'root' }); }
|
14864
14900
|
}
|
14865
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
14901
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyValuationService, decorators: [{
|
14866
14902
|
type: Injectable,
|
14867
14903
|
args: [{
|
14868
14904
|
providedIn: 'root'
|
@@ -15006,10 +15042,10 @@ class PropertyService extends RestService$1 {
|
|
15006
15042
|
return of({ growthPercent: 0, lowMarketValue: 0, marketValue: 0, highMarketValue: 0, confidence: PropertyCorelogicStatsConfidenceTypeEnum.LOW });
|
15007
15043
|
}));
|
15008
15044
|
}
|
15009
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15010
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15045
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15046
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
|
15011
15047
|
}
|
15012
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15048
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyService, decorators: [{
|
15013
15049
|
type: Injectable,
|
15014
15050
|
args: [{
|
15015
15051
|
providedIn: 'root'
|
@@ -15066,10 +15102,10 @@ class ServiceNotificationService extends RestService {
|
|
15066
15102
|
this.eventDispatcherService.dispatch(new AppEvent(AppEventTypeEnum.NOTIFICATION_ADDED, notification));
|
15067
15103
|
});
|
15068
15104
|
}
|
15069
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15070
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15105
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServiceNotificationService, deps: [{ token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15106
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' }); }
|
15071
15107
|
}
|
15072
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15108
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServiceNotificationService, decorators: [{
|
15073
15109
|
type: Injectable,
|
15074
15110
|
args: [{
|
15075
15111
|
providedIn: 'root'
|
@@ -15092,10 +15128,10 @@ class SoleBusinessService extends RestService$1 {
|
|
15092
15128
|
this.endpointUri = 'sole-businesses';
|
15093
15129
|
this.roles = [UserRolesEnum$1.SOLE_TANK];
|
15094
15130
|
}
|
15095
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15096
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15131
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15132
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessService, providedIn: 'root' }); }
|
15097
15133
|
}
|
15098
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessService, decorators: [{
|
15099
15135
|
type: Injectable,
|
15100
15136
|
args: [{
|
15101
15137
|
providedIn: 'root'
|
@@ -15108,10 +15144,10 @@ class SoleBusinessActivityService extends RestService {
|
|
15108
15144
|
this.modelClass = SoleBusinessActivity;
|
15109
15145
|
this.url = 'sole-business-activities';
|
15110
15146
|
}
|
15111
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15112
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15147
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15148
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' }); }
|
15113
15149
|
}
|
15114
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15150
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
|
15115
15151
|
type: Injectable,
|
15116
15152
|
args: [{
|
15117
15153
|
providedIn: 'root'
|
@@ -15140,10 +15176,10 @@ class SoleBusinessLossService extends RestService$1 {
|
|
15140
15176
|
this.refreshCache();
|
15141
15177
|
});
|
15142
15178
|
}
|
15143
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15144
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15179
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessLossService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15180
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' }); }
|
15145
15181
|
}
|
15146
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15182
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessLossService, decorators: [{
|
15147
15183
|
type: Injectable,
|
15148
15184
|
args: [{
|
15149
15185
|
providedIn: 'root'
|
@@ -15162,10 +15198,10 @@ class SoleBusinessLossOffsetRuleService extends RestService {
|
|
15162
15198
|
this.modelClass = SoleBusinessLossOffsetRule;
|
15163
15199
|
this.url = 'sole-business-loss-offset-rules';
|
15164
15200
|
}
|
15165
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15166
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15201
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15202
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' }); }
|
15167
15203
|
}
|
15168
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15204
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
|
15169
15205
|
type: Injectable,
|
15170
15206
|
args: [{
|
15171
15207
|
providedIn: 'root'
|
@@ -15178,10 +15214,10 @@ class SoleContactService extends RestService {
|
|
15178
15214
|
this.modelClass = SoleContact;
|
15179
15215
|
this.url = 'sole-contacts';
|
15180
15216
|
}
|
15181
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15182
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15217
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15218
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleContactService, providedIn: 'root' }); }
|
15183
15219
|
}
|
15184
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15220
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleContactService, decorators: [{
|
15185
15221
|
type: Injectable,
|
15186
15222
|
args: [{
|
15187
15223
|
providedIn: 'root'
|
@@ -15237,10 +15273,10 @@ class SoleDepreciationMethodService {
|
|
15237
15273
|
this.get().subscribe();
|
15238
15274
|
});
|
15239
15275
|
}
|
15240
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15241
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15276
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDepreciationMethodService, deps: [{ token: i1.HttpClient }, { token: 'environment' }, { token: EventDispatcherService }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15277
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDepreciationMethodService, providedIn: 'root' }); }
|
15242
15278
|
}
|
15243
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15279
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDepreciationMethodService, decorators: [{
|
15244
15280
|
type: Injectable,
|
15245
15281
|
args: [{
|
15246
15282
|
providedIn: 'root'
|
@@ -15265,10 +15301,10 @@ class SoleDetailsService extends RestService$1 {
|
|
15265
15301
|
get() {
|
15266
15302
|
return super.get().pipe(map(soleDetails => soleDetails.length ? soleDetails : new Collection([plainToClass(SoleDetails, {})])));
|
15267
15303
|
}
|
15268
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15269
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15304
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15305
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDetailsService, providedIn: 'root' }); }
|
15270
15306
|
}
|
15271
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15307
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDetailsService, decorators: [{
|
15272
15308
|
type: Injectable,
|
15273
15309
|
args: [{
|
15274
15310
|
providedIn: 'root'
|
@@ -15302,10 +15338,10 @@ class SoleInvoiceService extends RestService$1 {
|
|
15302
15338
|
}
|
15303
15339
|
return this.cache.last.number + 1;
|
15304
15340
|
}
|
15305
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15306
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15341
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleInvoiceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15342
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' }); }
|
15307
15343
|
}
|
15308
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15344
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleInvoiceService, decorators: [{
|
15309
15345
|
type: Injectable,
|
15310
15346
|
args: [{
|
15311
15347
|
providedIn: 'root'
|
@@ -15321,10 +15357,10 @@ class SoleInvoiceTemplateService extends RestService {
|
|
15321
15357
|
this.modelClass = SoleInvoiceTemplate;
|
15322
15358
|
this.url = 'sole-invoice-templates';
|
15323
15359
|
}
|
15324
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15325
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15360
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15361
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' }); }
|
15326
15362
|
}
|
15327
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15363
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
|
15328
15364
|
type: Injectable,
|
15329
15365
|
args: [{
|
15330
15366
|
providedIn: 'root'
|
@@ -15345,10 +15381,10 @@ class BasReportService extends RestService {
|
|
15345
15381
|
this.modelClass = BasReport;
|
15346
15382
|
this.url = 'bas-reports';
|
15347
15383
|
}
|
15348
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15349
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15384
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15385
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasReportService, providedIn: 'root' }); }
|
15350
15386
|
}
|
15351
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15387
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasReportService, decorators: [{
|
15352
15388
|
type: Injectable,
|
15353
15389
|
args: [{
|
15354
15390
|
providedIn: 'root'
|
@@ -15372,10 +15408,10 @@ class ServicePaymentService extends RestService$1 {
|
|
15372
15408
|
}
|
15373
15409
|
return this.http.get(`${this.environment.apiV2}/service-payments/${payment.id}/invoice-url`);
|
15374
15410
|
}
|
15375
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15376
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15411
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15412
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePaymentService, providedIn: 'root' }); }
|
15377
15413
|
}
|
15378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15414
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePaymentService, decorators: [{
|
15379
15415
|
type: Injectable,
|
15380
15416
|
args: [{
|
15381
15417
|
providedIn: 'root'
|
@@ -15407,10 +15443,10 @@ class ServicePaymentMethodService extends RestService$1 {
|
|
15407
15443
|
return this.http.put(`${this.apiUrl}/${paymentMethod.id}/default`, {})
|
15408
15444
|
.pipe(map((updatedPaymentMethod) => plainToClass(ServicePaymentMethod, updatedPaymentMethod)));
|
15409
15445
|
}
|
15410
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15411
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15446
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePaymentMethodService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15447
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' }); }
|
15412
15448
|
}
|
15413
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15449
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
|
15414
15450
|
type: Injectable,
|
15415
15451
|
args: [{
|
15416
15452
|
providedIn: 'root'
|
@@ -15431,10 +15467,10 @@ class ServicePriceService extends RestService$1 {
|
|
15431
15467
|
this.collectionClass = ServicePriceCollection;
|
15432
15468
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
15433
15469
|
}
|
15434
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15435
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15470
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15471
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePriceService, providedIn: 'root' }); }
|
15436
15472
|
}
|
15437
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15473
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServicePriceService, decorators: [{
|
15438
15474
|
type: Injectable,
|
15439
15475
|
args: [{
|
15440
15476
|
providedIn: 'root'
|
@@ -15519,10 +15555,10 @@ class SubscriptionService extends RestService$1 {
|
|
15519
15555
|
get(path = this.apiUrl) {
|
15520
15556
|
return super.get(path).pipe(map(subscriptions => subscriptions.sortBy('isActive', 'ask')));
|
15521
15557
|
}
|
15522
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15523
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15558
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SubscriptionService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15559
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SubscriptionService, providedIn: 'root' }); }
|
15524
15560
|
}
|
15525
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15561
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SubscriptionService, decorators: [{
|
15526
15562
|
type: Injectable,
|
15527
15563
|
args: [{
|
15528
15564
|
providedIn: 'root'
|
@@ -15540,10 +15576,10 @@ class ServiceProductService extends RestService$1 {
|
|
15540
15576
|
this.endpointUri = 'service-products';
|
15541
15577
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
15542
15578
|
}
|
15543
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15544
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15579
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15580
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServiceProductService, providedIn: 'root' }); }
|
15545
15581
|
}
|
15546
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15582
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ServiceProductService, decorators: [{
|
15547
15583
|
type: Injectable,
|
15548
15584
|
args: [{
|
15549
15585
|
providedIn: 'root'
|
@@ -15679,10 +15715,10 @@ class TaxReviewHistoryService extends RestService {
|
|
15679
15715
|
this.updateCache();
|
15680
15716
|
});
|
15681
15717
|
}
|
15682
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15683
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15718
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReviewHistoryService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15719
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' }); }
|
15684
15720
|
}
|
15685
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15721
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
|
15686
15722
|
type: Injectable,
|
15687
15723
|
args: [{
|
15688
15724
|
providedIn: 'root'
|
@@ -15775,10 +15811,10 @@ class TaxReviewService extends RestService {
|
|
15775
15811
|
}
|
15776
15812
|
});
|
15777
15813
|
}
|
15778
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
15779
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
15814
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReviewService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15815
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReviewService, providedIn: 'root' }); }
|
15780
15816
|
}
|
15781
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
15817
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReviewService, decorators: [{
|
15782
15818
|
type: Injectable,
|
15783
15819
|
args: [{
|
15784
15820
|
providedIn: 'root'
|
@@ -16109,10 +16145,10 @@ class TaxSummaryService {
|
|
16109
16145
|
this.getForecast().subscribe();
|
16110
16146
|
});
|
16111
16147
|
}
|
16112
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16113
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16148
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxSummaryService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16149
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxSummaryService, providedIn: 'root' }); }
|
16114
16150
|
}
|
16115
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16151
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxSummaryService, decorators: [{
|
16116
16152
|
type: Injectable,
|
16117
16153
|
args: [{
|
16118
16154
|
providedIn: 'root'
|
@@ -16133,10 +16169,10 @@ class AllocationRuleService extends RestService$1 {
|
|
16133
16169
|
getCustomHttpErrorMessages() {
|
16134
16170
|
return { 422: 'You can only have 10 conditions in a rule' };
|
16135
16171
|
}
|
16136
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16137
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16172
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16173
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AllocationRuleService, providedIn: 'root' }); }
|
16138
16174
|
}
|
16139
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16175
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AllocationRuleService, decorators: [{
|
16140
16176
|
type: Injectable,
|
16141
16177
|
args: [{
|
16142
16178
|
providedIn: 'root'
|
@@ -16241,10 +16277,10 @@ class TransactionAllocationService extends RestService {
|
|
16241
16277
|
}
|
16242
16278
|
});
|
16243
16279
|
}
|
16244
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16245
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16280
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TransactionAllocationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16281
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' }); }
|
16246
16282
|
}
|
16247
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16283
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TransactionAllocationService, decorators: [{
|
16248
16284
|
type: Injectable,
|
16249
16285
|
args: [{
|
16250
16286
|
providedIn: 'root'
|
@@ -16496,10 +16532,10 @@ class TransactionService extends RestService {
|
|
16496
16532
|
}
|
16497
16533
|
});
|
16498
16534
|
}
|
16499
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16500
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16535
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TransactionService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16536
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TransactionService, providedIn: 'root' }); }
|
16501
16537
|
}
|
16502
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16538
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TransactionService, decorators: [{
|
16503
16539
|
type: Injectable,
|
16504
16540
|
args: [{
|
16505
16541
|
providedIn: 'root'
|
@@ -16525,10 +16561,10 @@ class PriorTransactionService extends RestService$1 {
|
|
16525
16561
|
const financialYear = new FinancialYear(new FinancialYear().year - 1);
|
16526
16562
|
return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(transactions => transactions.filterByFinancialYear('date', null, financialYear)));
|
16527
16563
|
}
|
16528
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16529
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16564
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PriorTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16565
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PriorTransactionService, providedIn: 'root' }); }
|
16530
16566
|
}
|
16531
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16567
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PriorTransactionService, decorators: [{
|
16532
16568
|
type: Injectable,
|
16533
16569
|
args: [{
|
16534
16570
|
providedIn: 'root'
|
@@ -16550,10 +16586,10 @@ class InvoiceTransactionsService extends RestService$1 {
|
|
16550
16586
|
this.endpointUri = 'invoices/transactions';
|
16551
16587
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
16552
16588
|
}
|
16553
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16554
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16589
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InvoiceTransactionsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16590
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InvoiceTransactionsService, providedIn: 'root' }); }
|
16555
16591
|
}
|
16556
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16592
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InvoiceTransactionsService, decorators: [{
|
16557
16593
|
type: Injectable,
|
16558
16594
|
args: [{
|
16559
16595
|
providedIn: 'root'
|
@@ -16577,10 +16613,10 @@ class YoutubeService {
|
|
16577
16613
|
title: item.snippet.title
|
16578
16614
|
}))));
|
16579
16615
|
}
|
16580
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16581
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16616
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: YoutubeService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16617
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: YoutubeService, providedIn: 'root' }); }
|
16582
16618
|
}
|
16583
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16619
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: YoutubeService, decorators: [{
|
16584
16620
|
type: Injectable,
|
16585
16621
|
args: [{
|
16586
16622
|
providedIn: 'root'
|
@@ -16600,10 +16636,10 @@ class VehicleService extends RestService$1 {
|
|
16600
16636
|
this.collectionClass = (Collection);
|
16601
16637
|
this.modelClass = Vehicle;
|
16602
16638
|
}
|
16603
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16604
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16639
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16640
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleService, providedIn: 'root' }); }
|
16605
16641
|
}
|
16606
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16642
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleService, decorators: [{
|
16607
16643
|
type: Injectable,
|
16608
16644
|
args: [{
|
16609
16645
|
providedIn: 'root'
|
@@ -16633,10 +16669,10 @@ class VehicleClaimService extends RestService$1 {
|
|
16633
16669
|
this.refreshCache();
|
16634
16670
|
});
|
16635
16671
|
}
|
16636
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16637
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16672
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleClaimService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16673
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleClaimService, providedIn: 'root' }); }
|
16638
16674
|
}
|
16639
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16675
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleClaimService, decorators: [{
|
16640
16676
|
type: Injectable,
|
16641
16677
|
args: [{
|
16642
16678
|
providedIn: 'root'
|
@@ -16698,10 +16734,10 @@ class VehicleClaimDetailsService {
|
|
16698
16734
|
const vehicleClaimDetails = plainToClass(VehicleClaimDetails, Object.assign({}, this.cache, { isManual: true }));
|
16699
16735
|
this.update(vehicleClaimDetails).subscribe();
|
16700
16736
|
}
|
16701
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16702
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16737
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleClaimDetailsService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: EventDispatcherService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16738
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleClaimDetailsService, providedIn: 'root' }); }
|
16703
16739
|
}
|
16704
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16740
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleClaimDetailsService, decorators: [{
|
16705
16741
|
type: Injectable,
|
16706
16742
|
args: [{
|
16707
16743
|
providedIn: 'root'
|
@@ -16722,10 +16758,10 @@ class VehicleLogbookService extends RestService$1 {
|
|
16722
16758
|
this.collectionClass = VehicleLogbookCollection;
|
16723
16759
|
this.modelClass = VehicleLogbook;
|
16724
16760
|
}
|
16725
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16726
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16761
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16762
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' }); }
|
16727
16763
|
}
|
16728
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16764
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: VehicleLogbookService, decorators: [{
|
16729
16765
|
type: Injectable,
|
16730
16766
|
args: [{
|
16731
16767
|
providedIn: 'root'
|
@@ -16748,10 +16784,10 @@ class AnnualClientDetailsService extends RestService$1 {
|
|
16748
16784
|
this.endpointUri = 'annual-client-details';
|
16749
16785
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
|
16750
16786
|
}
|
16751
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16752
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16787
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AnnualClientDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16788
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AnnualClientDetailsService, providedIn: 'root' }); }
|
16753
16789
|
}
|
16754
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16790
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
|
16755
16791
|
type: Injectable,
|
16756
16792
|
args: [{
|
16757
16793
|
providedIn: 'root'
|
@@ -16781,10 +16817,10 @@ class OccupationService {
|
|
16781
16817
|
}
|
16782
16818
|
return this.occupationsSubject.asObservable();
|
16783
16819
|
}
|
16784
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16785
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16820
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: OccupationService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16821
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: OccupationService, providedIn: 'root' }); }
|
16786
16822
|
}
|
16787
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16823
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: OccupationService, decorators: [{
|
16788
16824
|
type: Injectable,
|
16789
16825
|
args: [{
|
16790
16826
|
providedIn: 'root'
|
@@ -16806,10 +16842,10 @@ class ClientCouponService extends RestService$1 {
|
|
16806
16842
|
this.endpointUri = 'users/current/promo-code';
|
16807
16843
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
16808
16844
|
}
|
16809
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16810
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16845
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientCouponService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16846
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientCouponService, providedIn: 'root' }); }
|
16811
16847
|
}
|
16812
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16848
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientCouponService, decorators: [{
|
16813
16849
|
type: Injectable,
|
16814
16850
|
args: [{
|
16815
16851
|
providedIn: 'root'
|
@@ -16824,10 +16860,10 @@ class CapitalLossService extends RestService$1 {
|
|
16824
16860
|
this.collectionClass = (Collection);
|
16825
16861
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
16826
16862
|
}
|
16827
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16828
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16863
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CapitalLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16864
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CapitalLossService, providedIn: 'root' }); }
|
16829
16865
|
}
|
16830
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16866
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CapitalLossService, decorators: [{
|
16831
16867
|
type: Injectable,
|
16832
16868
|
args: [{
|
16833
16869
|
providedIn: 'root'
|
@@ -16890,10 +16926,10 @@ class UserEventSettingService extends RestService$1 {
|
|
16890
16926
|
this.endpointUri = 'user-event-settings';
|
16891
16927
|
this.disabledMethods = ['postBatch', 'putBatch', 'delete', 'deleteBatch'];
|
16892
16928
|
}
|
16893
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16894
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16929
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16930
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserEventSettingService, providedIn: 'root' }); }
|
16895
16931
|
}
|
16896
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16932
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserEventSettingService, decorators: [{
|
16897
16933
|
type: Injectable,
|
16898
16934
|
args: [{
|
16899
16935
|
providedIn: 'root'
|
@@ -16908,10 +16944,10 @@ class UserEventTypeService extends RestService$1 {
|
|
16908
16944
|
this.endpointUri = 'user-event-types';
|
16909
16945
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
16910
16946
|
}
|
16911
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16912
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16947
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16948
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserEventTypeService, providedIn: 'root' }); }
|
16913
16949
|
}
|
16914
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16950
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserEventTypeService, decorators: [{
|
16915
16951
|
type: Injectable,
|
16916
16952
|
args: [{
|
16917
16953
|
providedIn: 'root'
|
@@ -16938,10 +16974,10 @@ class UsersInviteService extends RestService {
|
|
16938
16974
|
this.modelClass = RegistrationInvite;
|
16939
16975
|
this.url = 'users/invite';
|
16940
16976
|
}
|
16941
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
16942
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
16977
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16978
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UsersInviteService, providedIn: 'root' }); }
|
16943
16979
|
}
|
16944
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
16980
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UsersInviteService, decorators: [{
|
16945
16981
|
type: Injectable,
|
16946
16982
|
args: [{
|
16947
16983
|
providedIn: 'root'
|
@@ -17056,10 +17092,10 @@ class UserService extends RestService$1 {
|
|
17056
17092
|
this.setCache([user], true);
|
17057
17093
|
}, ['post', 'put']);
|
17058
17094
|
}
|
17059
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17060
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17095
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17096
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserService, providedIn: 'root' }); }
|
17061
17097
|
}
|
17062
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17098
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserService, decorators: [{
|
17063
17099
|
type: Injectable,
|
17064
17100
|
args: [{
|
17065
17101
|
providedIn: 'root'
|
@@ -17080,10 +17116,10 @@ class FinancialYearService {
|
|
17080
17116
|
window.location.reload();
|
17081
17117
|
}));
|
17082
17118
|
}
|
17083
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17084
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17119
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialYearService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17120
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialYearService, providedIn: 'root' }); }
|
17085
17121
|
}
|
17086
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17122
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialYearService, decorators: [{
|
17087
17123
|
type: Injectable,
|
17088
17124
|
args: [{
|
17089
17125
|
providedIn: 'root'
|
@@ -17127,10 +17163,10 @@ class MfaDetailsService extends RestService$1 {
|
|
17127
17163
|
return mfaDetails;
|
17128
17164
|
}));
|
17129
17165
|
}
|
17130
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17131
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17166
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MfaDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17167
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MfaDetailsService, providedIn: 'root' }); }
|
17132
17168
|
}
|
17133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17169
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MfaDetailsService, decorators: [{
|
17134
17170
|
type: Injectable,
|
17135
17171
|
args: [{
|
17136
17172
|
providedIn: 'root'
|
@@ -17167,10 +17203,10 @@ class HoldingTradeService extends RestService$1 {
|
|
17167
17203
|
}
|
17168
17204
|
});
|
17169
17205
|
}
|
17170
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17171
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17206
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTradeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17207
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTradeService, providedIn: 'root' }); }
|
17172
17208
|
}
|
17173
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17209
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTradeService, decorators: [{
|
17174
17210
|
type: Injectable,
|
17175
17211
|
args: [{
|
17176
17212
|
providedIn: 'root'
|
@@ -17207,10 +17243,10 @@ class HoldingTypeService extends RestService$1 {
|
|
17207
17243
|
}
|
17208
17244
|
});
|
17209
17245
|
}
|
17210
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17211
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17246
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTypeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17247
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTypeService, providedIn: 'root' }); }
|
17212
17248
|
}
|
17213
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17249
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTypeService, decorators: [{
|
17214
17250
|
type: Injectable,
|
17215
17251
|
args: [{
|
17216
17252
|
providedIn: 'root'
|
@@ -17229,10 +17265,10 @@ class HoldingSaleService extends RestService$1 {
|
|
17229
17265
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
17230
17266
|
this.roles = [UserRolesEnum$1.HOLDING_TANK];
|
17231
17267
|
}
|
17232
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17233
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17268
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17269
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingSaleService, providedIn: 'root' }); }
|
17234
17270
|
}
|
17235
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17271
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingSaleService, decorators: [{
|
17236
17272
|
type: Injectable,
|
17237
17273
|
args: [{
|
17238
17274
|
providedIn: 'root'
|
@@ -17274,10 +17310,10 @@ class HoldingTradeImportService extends RestService$1 {
|
|
17274
17310
|
return throwError(error);
|
17275
17311
|
}));
|
17276
17312
|
}
|
17277
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17278
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17313
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTradeImportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17314
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTradeImportService, providedIn: 'root' }); }
|
17279
17315
|
}
|
17280
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17316
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTradeImportService, decorators: [{
|
17281
17317
|
type: Injectable,
|
17282
17318
|
args: [{
|
17283
17319
|
providedIn: 'root'
|
@@ -17371,10 +17407,10 @@ class HoldingTypeExchangeService extends DataService {
|
|
17371
17407
|
this.collectionClass = Collection;
|
17372
17408
|
this.setCache(HoldingTypeExchanges);
|
17373
17409
|
}
|
17374
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17375
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17410
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTypeExchangeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17411
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTypeExchangeService, providedIn: 'root' }); }
|
17376
17412
|
}
|
17377
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17413
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HoldingTypeExchangeService, decorators: [{
|
17378
17414
|
type: Injectable,
|
17379
17415
|
args: [{
|
17380
17416
|
providedIn: 'root'
|
@@ -17408,10 +17444,10 @@ class HomeOfficeClaimService extends RestService$1 {
|
|
17408
17444
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
17409
17445
|
this.roles = [UserRolesEnum$1.WORK_TANK, UserRolesEnum$1.SOLE_TANK];
|
17410
17446
|
}
|
17411
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17412
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17447
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HomeOfficeClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17448
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HomeOfficeClaimService, providedIn: 'root' }); }
|
17413
17449
|
}
|
17414
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HomeOfficeClaimService, decorators: [{
|
17415
17451
|
type: Injectable,
|
17416
17452
|
args: [{
|
17417
17453
|
providedIn: 'root'
|
@@ -17439,10 +17475,10 @@ class HomeOfficeLogService extends RestService$1 {
|
|
17439
17475
|
listenEvents() {
|
17440
17476
|
this.listenCSE(HomeOfficeClaim, this.refreshCache, ['post']);
|
17441
17477
|
}
|
17442
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17443
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17478
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HomeOfficeLogService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17479
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HomeOfficeLogService, providedIn: 'root' }); }
|
17444
17480
|
}
|
17445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17481
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HomeOfficeLogService, decorators: [{
|
17446
17482
|
type: Injectable,
|
17447
17483
|
args: [{
|
17448
17484
|
providedIn: 'root'
|
@@ -17482,10 +17518,10 @@ class AussieService extends RestService$1 {
|
|
17482
17518
|
postAppointment() {
|
17483
17519
|
return this.http.delete(`${this.environment.apiV2}/aussie/appointments`);
|
17484
17520
|
}
|
17485
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17486
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17521
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AussieService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17522
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AussieService, providedIn: 'root' }); }
|
17487
17523
|
}
|
17488
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17524
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AussieService, decorators: [{
|
17489
17525
|
type: Injectable,
|
17490
17526
|
args: [{
|
17491
17527
|
providedIn: 'root'
|
@@ -17509,10 +17545,10 @@ class SharesightDetailsService extends RestService$1 {
|
|
17509
17545
|
reconnect(sharesightDetails) {
|
17510
17546
|
return this.put(sharesightDetails, `${this.apiUrl}/${sharesightDetails.id}/reconnect`);
|
17511
17547
|
}
|
17512
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17513
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17548
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SharesightDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17549
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SharesightDetailsService, providedIn: 'root' }); }
|
17514
17550
|
}
|
17515
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17551
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SharesightDetailsService, decorators: [{
|
17516
17552
|
type: Injectable,
|
17517
17553
|
args: [{
|
17518
17554
|
providedIn: 'root'
|
@@ -17530,10 +17566,10 @@ class SharesightPortfolioService extends RestService$1 {
|
|
17530
17566
|
getExternal() {
|
17531
17567
|
return this.fetch(`${this.apiUrl}/external`, false);
|
17532
17568
|
}
|
17533
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17534
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17569
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SharesightPortfolioService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17570
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SharesightPortfolioService, providedIn: 'root' }); }
|
17535
17571
|
}
|
17536
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17572
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SharesightPortfolioService, decorators: [{
|
17537
17573
|
type: Injectable,
|
17538
17574
|
args: [{
|
17539
17575
|
providedIn: 'root'
|
@@ -17610,10 +17646,10 @@ class IncomeSourceTypeService extends DataService {
|
|
17610
17646
|
this.collectionClass = Collection;
|
17611
17647
|
this.setCache(IncomeSourceTypes);
|
17612
17648
|
}
|
17613
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17614
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17649
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceTypeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17650
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceTypeService, providedIn: 'root' }); }
|
17615
17651
|
}
|
17616
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17652
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IncomeSourceTypeService, decorators: [{
|
17617
17653
|
type: Injectable,
|
17618
17654
|
args: [{
|
17619
17655
|
providedIn: 'root'
|
@@ -17627,10 +17663,10 @@ class ChartAccountsValueService extends DataService {
|
|
17627
17663
|
this.collectionClass = ChartAccountsValueCollection;
|
17628
17664
|
this.setCache(ChartAccountsValues);
|
17629
17665
|
}
|
17630
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
17631
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
17666
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsValueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17667
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsValueService, providedIn: 'root' }); }
|
17632
17668
|
}
|
17633
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
17669
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ChartAccountsValueService, decorators: [{
|
17634
17670
|
type: Injectable,
|
17635
17671
|
args: [{
|
17636
17672
|
providedIn: 'root'
|
@@ -19603,10 +19639,10 @@ class TaxReturnItemService extends DataService {
|
|
19603
19639
|
this.collectionClass = Collection;
|
19604
19640
|
this.setCache(TaxReturnItems);
|
19605
19641
|
}
|
19606
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19607
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
19642
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReturnItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19643
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReturnItemService, providedIn: 'root' }); }
|
19608
19644
|
}
|
19609
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
19645
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: TaxReturnItemService, decorators: [{
|
19610
19646
|
type: Injectable,
|
19611
19647
|
args: [{
|
19612
19648
|
providedIn: 'root'
|
@@ -19621,10 +19657,10 @@ class SetupItemService extends RestService$1 {
|
|
19621
19657
|
this.collectionClass = AccountSetupItemCollection;
|
19622
19658
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
19623
19659
|
}
|
19624
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19625
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
19660
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SetupItemService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
19661
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SetupItemService, providedIn: 'root' }); }
|
19626
19662
|
}
|
19627
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
19663
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SetupItemService, decorators: [{
|
19628
19664
|
type: Injectable,
|
19629
19665
|
args: [{
|
19630
19666
|
providedIn: 'root'
|
@@ -19807,10 +19843,10 @@ class AccountSetupService {
|
|
19807
19843
|
getSharesightDetails(importEnabled) {
|
19808
19844
|
return this.sharesightDetailsService.getArray().pipe(map(details => details.filter(detail => importEnabled ? detail.importEnabled : detail.exportEnabled)));
|
19809
19845
|
}
|
19810
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19811
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
19846
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", 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 }); }
|
19847
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AccountSetupService, providedIn: 'root' }); }
|
19812
19848
|
}
|
19813
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
19849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AccountSetupService, decorators: [{
|
19814
19850
|
type: Injectable,
|
19815
19851
|
args: [{
|
19816
19852
|
providedIn: 'root'
|
@@ -19825,10 +19861,10 @@ class AdblockDetectorService {
|
|
19825
19861
|
constructor() {
|
19826
19862
|
checkAdBlock().then((isDetected) => this.isDetected = isDetected);
|
19827
19863
|
}
|
19828
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19829
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
19864
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AdblockDetectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19865
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AdblockDetectorService, providedIn: 'root' }); }
|
19830
19866
|
}
|
19831
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
19867
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AdblockDetectorService, decorators: [{
|
19832
19868
|
type: Injectable,
|
19833
19869
|
args: [{
|
19834
19870
|
providedIn: 'root'
|
@@ -19880,10 +19916,10 @@ class MixpanelService {
|
|
19880
19916
|
}
|
19881
19917
|
mixpanel['track_pageview']();
|
19882
19918
|
}
|
19883
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19884
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
19919
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MixpanelService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19920
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MixpanelService, providedIn: 'root' }); }
|
19885
19921
|
}
|
19886
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
19922
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MixpanelService, decorators: [{
|
19887
19923
|
type: Injectable,
|
19888
19924
|
args: [{
|
19889
19925
|
providedIn: 'root'
|
@@ -19950,10 +19986,10 @@ class JwtService extends JwtHelperService {
|
|
19950
19986
|
isMe(userId) {
|
19951
19987
|
return this.decode().id === userId;
|
19952
19988
|
}
|
19953
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19954
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
19989
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: JwtService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
19990
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: JwtService, providedIn: 'root' }); }
|
19955
19991
|
}
|
19956
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
19992
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: JwtService, decorators: [{
|
19957
19993
|
type: Injectable,
|
19958
19994
|
args: [{
|
19959
19995
|
providedIn: 'root'
|
@@ -19994,10 +20030,10 @@ class AuthService {
|
|
19994
20030
|
this.jwtService.destroyTokens();
|
19995
20031
|
location.replace(url);
|
19996
20032
|
}
|
19997
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
19998
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20033
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AuthService, deps: [{ token: i1.HttpClient }, { token: JwtService }, { token: MixpanelService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20034
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AuthService, providedIn: 'root' }); }
|
19999
20035
|
}
|
20000
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20036
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AuthService, decorators: [{
|
20001
20037
|
type: Injectable,
|
20002
20038
|
args: [{
|
20003
20039
|
providedIn: 'root'
|
@@ -20134,10 +20170,10 @@ class JwtInterceptor {
|
|
20134
20170
|
// });
|
20135
20171
|
});
|
20136
20172
|
}
|
20137
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20138
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20173
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: JwtInterceptor, deps: [{ token: JwtService }, { token: AuthService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20174
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: JwtInterceptor }); }
|
20139
20175
|
}
|
20140
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20176
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: JwtInterceptor, decorators: [{
|
20141
20177
|
type: Injectable
|
20142
20178
|
}], ctorParameters: () => [{ type: JwtService }, { type: AuthService }, { type: undefined, decorators: [{
|
20143
20179
|
type: Inject,
|
@@ -20145,9 +20181,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
|
|
20145
20181
|
}] }] });
|
20146
20182
|
|
20147
20183
|
let InterceptorsModule$1 = class InterceptorsModule {
|
20148
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20149
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.
|
20150
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.
|
20184
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
20185
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule }); }
|
20186
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule, providers: [
|
20151
20187
|
{
|
20152
20188
|
provide: HTTP_INTERCEPTORS,
|
20153
20189
|
useClass: JwtInterceptor,
|
@@ -20155,7 +20191,7 @@ let InterceptorsModule$1 = class InterceptorsModule {
|
|
20155
20191
|
}
|
20156
20192
|
] }); }
|
20157
20193
|
};
|
20158
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20194
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule$1, decorators: [{
|
20159
20195
|
type: NgModule,
|
20160
20196
|
args: [{
|
20161
20197
|
providers: [
|
@@ -20185,13 +20221,13 @@ class CommonModule {
|
|
20185
20221
|
]
|
20186
20222
|
};
|
20187
20223
|
}
|
20188
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20189
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.
|
20224
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
20225
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
|
20190
20226
|
InterceptorsModule$1] }); }
|
20191
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.
|
20227
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
|
20192
20228
|
InterceptorsModule$1] }); }
|
20193
20229
|
}
|
20194
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20230
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CommonModule, decorators: [{
|
20195
20231
|
type: NgModule,
|
20196
20232
|
args: [{
|
20197
20233
|
declarations: [],
|
@@ -20238,10 +20274,10 @@ class UserSwitcherService {
|
|
20238
20274
|
window.location.replace('/client/dashboard');
|
20239
20275
|
});
|
20240
20276
|
}
|
20241
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20242
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20277
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserSwitcherService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20278
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserSwitcherService, providedIn: 'root' }); }
|
20243
20279
|
}
|
20244
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserSwitcherService, decorators: [{
|
20245
20281
|
type: Injectable,
|
20246
20282
|
args: [{
|
20247
20283
|
providedIn: 'root'
|
@@ -20285,10 +20321,10 @@ class AssetsService {
|
|
20285
20321
|
delete(entityId, asset) {
|
20286
20322
|
return this.http.delete(`${this.environment.apiV2}/${asset.entityType}/${entityId}/${asset.type}/${asset.id}`);
|
20287
20323
|
}
|
20288
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20289
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20324
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AssetsService, deps: [{ token: i1.HttpClient }, { token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20325
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AssetsService, providedIn: 'root' }); }
|
20290
20326
|
}
|
20291
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20327
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AssetsService, decorators: [{
|
20292
20328
|
type: Injectable,
|
20293
20329
|
args: [{
|
20294
20330
|
providedIn: 'root'
|
@@ -20316,10 +20352,10 @@ class BankAccountCalculationService {
|
|
20316
20352
|
getNetPosition(bankAccounts, bankTransactions, allocations) {
|
20317
20353
|
return bankAccounts.currentBalance - this.getTaxTankBalance(bankAccounts.getLoanAccounts(), bankTransactions, allocations);
|
20318
20354
|
}
|
20319
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20320
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20355
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankAccountCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20356
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' }); }
|
20321
20357
|
}
|
20322
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20358
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BankAccountCalculationService, decorators: [{
|
20323
20359
|
type: Injectable,
|
20324
20360
|
args: [{
|
20325
20361
|
providedIn: 'root'
|
@@ -20346,10 +20382,10 @@ class ExportFormatterService {
|
|
20346
20382
|
}
|
20347
20383
|
}));
|
20348
20384
|
}
|
20349
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20350
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20385
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ExportFormatterService, deps: [{ token: i1$1.CurrencyPipe }, { token: i1$1.PercentPipe }, { token: i1$1.DatePipe }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20386
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ExportFormatterService, providedIn: 'root' }); }
|
20351
20387
|
}
|
20352
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ExportFormatterService, decorators: [{
|
20353
20389
|
type: Injectable,
|
20354
20390
|
args: [{
|
20355
20391
|
providedIn: 'root'
|
@@ -20369,10 +20405,10 @@ class HeaderTitleService {
|
|
20369
20405
|
return route;
|
20370
20406
|
}), filter((route) => route.outlet === 'primary'), mergeMap((route) => route.data));
|
20371
20407
|
}
|
20372
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20373
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20408
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HeaderTitleService, deps: [{ token: i4.Router }, { token: i4.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20409
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HeaderTitleService, providedIn: 'root' }); }
|
20374
20410
|
}
|
20375
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20411
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: HeaderTitleService, decorators: [{
|
20376
20412
|
type: Injectable,
|
20377
20413
|
args: [{
|
20378
20414
|
providedIn: 'root'
|
@@ -20405,10 +20441,10 @@ class IntercomService {
|
|
20405
20441
|
const connectionCredentials = this.initUser(user);
|
20406
20442
|
window.Intercom('boot', connectionCredentials);
|
20407
20443
|
}
|
20408
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20409
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20444
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20445
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IntercomService, providedIn: 'root' }); }
|
20410
20446
|
}
|
20411
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: IntercomService, decorators: [{
|
20412
20448
|
type: Injectable,
|
20413
20449
|
args: [{
|
20414
20450
|
providedIn: 'root'
|
@@ -20485,20 +20521,20 @@ class PdfFromDomElementService {
|
|
20485
20521
|
if (!document.getElementById('pdf-export-style')) {
|
20486
20522
|
const style = document.createElement('style');
|
20487
20523
|
style.id = 'pdf-export-style';
|
20488
|
-
style.textContent = `
|
20489
|
-
.pdf-export input.mat-mdc-input-element {
|
20490
|
-
height: 30px !important;
|
20491
|
-
margin-top: 20px;
|
20492
|
-
padding: 0 15px !important;
|
20493
|
-
}
|
20524
|
+
style.textContent = `
|
20525
|
+
.pdf-export input.mat-mdc-input-element {
|
20526
|
+
height: 30px !important;
|
20527
|
+
margin-top: 20px;
|
20528
|
+
padding: 0 15px !important;
|
20529
|
+
}
|
20494
20530
|
`;
|
20495
20531
|
document.head.appendChild(style);
|
20496
20532
|
}
|
20497
20533
|
}
|
20498
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20499
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20534
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20535
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' }); }
|
20500
20536
|
}
|
20501
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20537
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromDomElementService, decorators: [{
|
20502
20538
|
type: Injectable,
|
20503
20539
|
args: [{
|
20504
20540
|
providedIn: 'root'
|
@@ -20614,10 +20650,10 @@ class PdfFromTableService {
|
|
20614
20650
|
startY: lastTableCoords + FILE_SETTINGS.titleCoords.top / 2,
|
20615
20651
|
});
|
20616
20652
|
}
|
20617
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20618
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20653
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20654
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromTableService, providedIn: 'root' }); }
|
20619
20655
|
}
|
20620
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20656
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromTableService, decorators: [{
|
20621
20657
|
type: Injectable,
|
20622
20658
|
args: [{
|
20623
20659
|
providedIn: 'root'
|
@@ -20659,10 +20695,10 @@ class PdfFromDataTableService extends PdfFromTableService {
|
|
20659
20695
|
});
|
20660
20696
|
return pdf;
|
20661
20697
|
}
|
20662
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20663
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20698
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20699
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' }); }
|
20664
20700
|
}
|
20665
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20701
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromDataTableService, decorators: [{
|
20666
20702
|
type: Injectable,
|
20667
20703
|
args: [{
|
20668
20704
|
providedIn: 'root'
|
@@ -20711,10 +20747,10 @@ class PdfFromHtmlTableService extends PdfFromTableService {
|
|
20711
20747
|
Array.from(caption.children).map((node) => node.textContent).join('\n') :
|
20712
20748
|
caption.innerText;
|
20713
20749
|
}
|
20714
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20715
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20750
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
20751
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' }); }
|
20716
20752
|
}
|
20717
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20753
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
|
20718
20754
|
type: Injectable,
|
20719
20755
|
args: [{
|
20720
20756
|
providedIn: 'root'
|
@@ -20738,10 +20774,10 @@ class PreloaderService {
|
|
20738
20774
|
activePreloaders = activePreloaders.filter((preloader) => preloader !== endpoint);
|
20739
20775
|
this.activePreloaders.next(activePreloaders);
|
20740
20776
|
}
|
20741
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20742
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20777
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20778
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PreloaderService, providedIn: 'root' }); }
|
20743
20779
|
}
|
20744
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20780
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PreloaderService, decorators: [{
|
20745
20781
|
type: Injectable,
|
20746
20782
|
args: [{
|
20747
20783
|
providedIn: 'root'
|
@@ -20779,10 +20815,10 @@ class CorelogicService {
|
|
20779
20815
|
return throwError(() => error);
|
20780
20816
|
}));
|
20781
20817
|
}
|
20782
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20783
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20818
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CorelogicService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20819
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CorelogicService, providedIn: 'root' }); }
|
20784
20820
|
}
|
20785
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20821
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CorelogicService, decorators: [{
|
20786
20822
|
type: Injectable,
|
20787
20823
|
args: [{
|
20788
20824
|
providedIn: 'root'
|
@@ -20811,10 +20847,10 @@ class EquityPositionChartService {
|
|
20811
20847
|
}))
|
20812
20848
|
}))));
|
20813
20849
|
}
|
20814
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20815
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
20850
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EquityPositionChartService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20851
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' }); }
|
20816
20852
|
}
|
20817
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
20853
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EquityPositionChartService, decorators: [{
|
20818
20854
|
type: Injectable,
|
20819
20855
|
args: [{
|
20820
20856
|
providedIn: 'root'
|
@@ -20985,10 +21021,10 @@ class PropertyCalculationService {
|
|
20985
21021
|
return new Badge('Monitoring performance');
|
20986
21022
|
}
|
20987
21023
|
}
|
20988
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
20989
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21024
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21025
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' }); }
|
20990
21026
|
}
|
20991
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21027
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyCalculationService, decorators: [{
|
20992
21028
|
type: Injectable,
|
20993
21029
|
args: [{
|
20994
21030
|
providedIn: 'root'
|
@@ -21046,10 +21082,10 @@ class PropertyTransactionReportService {
|
|
21046
21082
|
getDepreciations() {
|
21047
21083
|
return this.depreciationService.get().pipe(map((depreciations) => depreciations.getByChartAccountsCategories(CHART_ACCOUNTS_CATEGORIES.property)));
|
21048
21084
|
}
|
21049
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21050
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21085
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyTransactionReportService, deps: [{ token: PropertyService }, { token: TransactionService }, { token: DepreciationService }, { token: ChartAccountsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21086
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' }); }
|
21051
21087
|
}
|
21052
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21088
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
|
21053
21089
|
type: Injectable,
|
21054
21090
|
args: [{
|
21055
21091
|
providedIn: 'root'
|
@@ -21069,10 +21105,10 @@ class CurrentFirmBranchService {
|
|
21069
21105
|
set(firmBranches) {
|
21070
21106
|
this.firmBranchIds$.next(firmBranches.map(branch => branch.id));
|
21071
21107
|
}
|
21072
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21073
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21108
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CurrentFirmBranchService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21109
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CurrentFirmBranchService, providedIn: 'root' }); }
|
21074
21110
|
}
|
21075
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21111
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CurrentFirmBranchService, decorators: [{
|
21076
21112
|
type: Injectable,
|
21077
21113
|
args: [{
|
21078
21114
|
providedIn: 'root'
|
@@ -21170,10 +21206,10 @@ class XlsxService {
|
|
21170
21206
|
});
|
21171
21207
|
FileSaver.saveAs(data, `${fileName}.xlsx`);
|
21172
21208
|
}
|
21173
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21174
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21209
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21210
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: XlsxService, providedIn: 'root' }); }
|
21175
21211
|
}
|
21176
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21212
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: XlsxService, decorators: [{
|
21177
21213
|
type: Injectable,
|
21178
21214
|
args: [{
|
21179
21215
|
providedIn: 'root'
|
@@ -21207,10 +21243,10 @@ class CorelogicInterceptor {
|
|
21207
21243
|
}
|
21208
21244
|
});
|
21209
21245
|
}
|
21210
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21211
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21246
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CorelogicInterceptor, deps: [{ token: CorelogicService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21247
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CorelogicInterceptor }); }
|
21212
21248
|
}
|
21213
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21249
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CorelogicInterceptor, decorators: [{
|
21214
21250
|
type: Injectable
|
21215
21251
|
}], ctorParameters: () => [{ type: CorelogicService }, { type: undefined, decorators: [{
|
21216
21252
|
type: Inject,
|
@@ -21246,10 +21282,10 @@ class FinancialYearInterceptor {
|
|
21246
21282
|
}
|
21247
21283
|
return next.handle(clonedReq);
|
21248
21284
|
}
|
21249
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21250
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21285
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21286
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialYearInterceptor }); }
|
21251
21287
|
}
|
21252
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
|
21253
21289
|
type: Injectable
|
21254
21290
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
21255
21291
|
type: Inject,
|
@@ -21283,10 +21319,10 @@ class UserSwitcherInterceptor {
|
|
21283
21319
|
intercept(request, next) {
|
21284
21320
|
return next.handle(this.switch(request, this.userSwitcherService.get()));
|
21285
21321
|
}
|
21286
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21287
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21322
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserSwitcherInterceptor, deps: [{ token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21323
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserSwitcherInterceptor }); }
|
21288
21324
|
}
|
21289
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21325
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
|
21290
21326
|
type: Injectable
|
21291
21327
|
}], ctorParameters: () => [{ type: UserSwitcherService }, { type: undefined, decorators: [{
|
21292
21328
|
type: Inject,
|
@@ -21396,6 +21432,10 @@ const ENDPOINTS = {
|
|
21396
21432
|
EMPLOYEES_INVITES_RESEND_POST: new Endpoint('POST', '\\/employee-invites\\/\\d+\\/\\resend'),
|
21397
21433
|
FACEBOOK_LOGIN_POST: new Endpoint('POST', '\\/users\\/authentication\\/facebook'),
|
21398
21434
|
FILE_POST: new Endpoint('POST', '\\/api\\/files'),
|
21435
|
+
FINANCIAL_GOALS_GET: new Endpoint('GET', '\\/api\\/financial-goals'),
|
21436
|
+
FINANCIAL_GOALS_POST: new Endpoint('POST', '\\/api\\/financial-goals'),
|
21437
|
+
FINANCIAL_GOALS_PUT: new Endpoint('PUT', '\\/api\\/financial-goals\\/\\d+'),
|
21438
|
+
FINANCIAL_GOALS_DELETE: new Endpoint('DELETE', '\\/api\\/financial-goals\\/\\d+'),
|
21399
21439
|
FIRM_GET: new Endpoint('GET', '\\/firms'),
|
21400
21440
|
FIRM_CURRENT_GET: new Endpoint('GET', '\\/firms\\/current'),
|
21401
21441
|
FIRM_CURRENT_PUT: new Endpoint('PUT', '\\/firms\\/current'),
|
@@ -21629,10 +21669,10 @@ class PreloaderInterceptor {
|
|
21629
21669
|
findEndpoint(requestPath) {
|
21630
21670
|
return Object.values(ENDPOINTS).find((endpoint) => endpoint.test(requestPath));
|
21631
21671
|
}
|
21632
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21633
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21672
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21673
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PreloaderInterceptor }); }
|
21634
21674
|
}
|
21635
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21675
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: PreloaderInterceptor, decorators: [{
|
21636
21676
|
type: Injectable
|
21637
21677
|
}], ctorParameters: () => [{ type: PreloaderService }] });
|
21638
21678
|
|
@@ -21657,10 +21697,10 @@ class BasiqTokenInterceptor {
|
|
21657
21697
|
}
|
21658
21698
|
});
|
21659
21699
|
}
|
21660
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21661
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21700
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqTokenInterceptor, deps: [{ token: BasiqTokenService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21701
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqTokenInterceptor }); }
|
21662
21702
|
}
|
21663
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqTokenInterceptor, decorators: [{
|
21664
21704
|
type: Injectable
|
21665
21705
|
}], ctorParameters: () => [{ type: BasiqTokenService }] });
|
21666
21706
|
|
@@ -21683,10 +21723,10 @@ class BasiqClientIdInterceptor {
|
|
21683
21723
|
url: request.url.replace('null', basiqClientId)
|
21684
21724
|
});
|
21685
21725
|
}
|
21686
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21687
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21726
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqClientIdInterceptor, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21727
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqClientIdInterceptor }); }
|
21688
21728
|
}
|
21689
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21729
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BasiqClientIdInterceptor, decorators: [{
|
21690
21730
|
type: Injectable
|
21691
21731
|
}], ctorParameters: () => [{ type: UserService }] });
|
21692
21732
|
|
@@ -21721,10 +21761,10 @@ class RewardfulInterceptor {
|
|
21721
21761
|
&& (window['Rewardful'].referral || window['Rewardful'].coupon?.id)
|
21722
21762
|
&& registrationUrls.some(registrationUrl => request.url.includes(registrationUrl));
|
21723
21763
|
}
|
21724
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21725
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21764
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RewardfulInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21765
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RewardfulInterceptor }); }
|
21726
21766
|
}
|
21727
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21767
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: RewardfulInterceptor, decorators: [{
|
21728
21768
|
type: Injectable
|
21729
21769
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
21730
21770
|
type: Inject,
|
@@ -21753,10 +21793,10 @@ class AussieInterceptor {
|
|
21753
21793
|
}
|
21754
21794
|
});
|
21755
21795
|
}
|
21756
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21757
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21796
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AussieInterceptor, deps: [{ token: AussieService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21797
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AussieInterceptor }); }
|
21758
21798
|
}
|
21759
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21799
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AussieInterceptor, decorators: [{
|
21760
21800
|
type: Injectable
|
21761
21801
|
}], ctorParameters: () => [{ type: AussieService }, { type: undefined, decorators: [{
|
21762
21802
|
type: Inject,
|
@@ -21764,13 +21804,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
|
|
21764
21804
|
}] }] });
|
21765
21805
|
|
21766
21806
|
const ADBLOCK_ERROR_HTML = new InjectionToken('ADBLOCK_ERROR_HTML');
|
21767
|
-
const ADBLOCK_ERROR_HTML_VALUE = `
|
21768
|
-
<div class="text-center">
|
21769
|
-
<strong>Action needed - Your adblocker is blocking CoreLogic</strong>
|
21770
|
-
To add a property in TaxTank we need to fetch data from CoreLogic — but your ad blocker is getting in the way.
|
21771
|
-
Please disable your adblocker or whitelist TaxTank to continue.
|
21772
|
-
<a class="btn" target="_blank" href="https://support.taxtank.com.au/en/articles/10505609-how-to-ensure-seamless-functionality-while-using-ad-blockers-with-taxtank">Learn more</a>
|
21773
|
-
</div>
|
21807
|
+
const ADBLOCK_ERROR_HTML_VALUE = `
|
21808
|
+
<div class="text-center">
|
21809
|
+
<strong>Action needed - Your adblocker is blocking CoreLogic</strong>
|
21810
|
+
To add a property in TaxTank we need to fetch data from CoreLogic — but your ad blocker is getting in the way.
|
21811
|
+
Please disable your adblocker or whitelist TaxTank to continue.
|
21812
|
+
<a class="btn" target="_blank" href="https://support.taxtank.com.au/en/articles/10505609-how-to-ensure-seamless-functionality-while-using-ad-blockers-with-taxtank">Learn more</a>
|
21813
|
+
</div>
|
21774
21814
|
`;
|
21775
21815
|
|
21776
21816
|
/**
|
@@ -21795,10 +21835,10 @@ class AdBlockErrorInterceptor {
|
|
21795
21835
|
}
|
21796
21836
|
return next.handle(request);
|
21797
21837
|
}
|
21798
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21799
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
21838
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AdBlockErrorInterceptor, deps: [{ token: 'environment' }, { token: AdblockDetectorService }, { token: ToastService }, { token: ADBLOCK_ERROR_HTML }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21839
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AdBlockErrorInterceptor }); }
|
21800
21840
|
}
|
21801
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21841
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AdBlockErrorInterceptor, decorators: [{
|
21802
21842
|
type: Injectable
|
21803
21843
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
21804
21844
|
type: Inject,
|
@@ -21809,9 +21849,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
|
|
21809
21849
|
}] }] });
|
21810
21850
|
|
21811
21851
|
class InterceptorsModule {
|
21812
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21813
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.
|
21814
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.
|
21852
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
21853
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule }); }
|
21854
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule, providers: [
|
21815
21855
|
{
|
21816
21856
|
provide: HTTP_INTERCEPTORS,
|
21817
21857
|
useClass: CorelogicInterceptor,
|
@@ -21864,7 +21904,7 @@ class InterceptorsModule {
|
|
21864
21904
|
}
|
21865
21905
|
] }); }
|
21866
21906
|
}
|
21867
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21907
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: InterceptorsModule, decorators: [{
|
21868
21908
|
type: NgModule,
|
21869
21909
|
args: [{
|
21870
21910
|
providers: [
|
@@ -21926,13 +21966,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
|
|
21926
21966
|
* https://angular.io/guide/creating-libraries
|
21927
21967
|
*/
|
21928
21968
|
class CoreModule {
|
21929
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21930
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.
|
21969
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
21970
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
|
21931
21971
|
InterceptorsModule] }); }
|
21932
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.
|
21972
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
|
21933
21973
|
InterceptorsModule] }); }
|
21934
21974
|
}
|
21935
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21975
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: CoreModule, decorators: [{
|
21936
21976
|
type: NgModule,
|
21937
21977
|
args: [{
|
21938
21978
|
declarations: [],
|
@@ -21952,10 +21992,10 @@ class AppCurrencyPipe extends CurrencyPipe {
|
|
21952
21992
|
digitsInfo = digitsInfo ?? '1.0-' + (value.toString().match(/[1-9]/)?.index || 2);
|
21953
21993
|
return super.transform(value, currencyCode, display, digitsInfo, locale);
|
21954
21994
|
}
|
21955
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21956
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.
|
21995
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AppCurrencyPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
|
21996
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: AppCurrencyPipe, isStandalone: true, name: "appCurrency" }); }
|
21957
21997
|
}
|
21958
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
21998
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AppCurrencyPipe, decorators: [{
|
21959
21999
|
type: Pipe,
|
21960
22000
|
args: [{
|
21961
22001
|
name: 'appCurrency',
|
@@ -21970,10 +22010,10 @@ class SafeUrlPipe {
|
|
21970
22010
|
transform(url) {
|
21971
22011
|
return this.sanitizer.bypassSecurityTrustResourceUrl(url);
|
21972
22012
|
}
|
21973
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21974
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.
|
22013
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SafeUrlPipe, deps: [{ token: i1$2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
22014
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
|
21975
22015
|
}
|
21976
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
22016
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SafeUrlPipe, decorators: [{
|
21977
22017
|
type: Pipe,
|
21978
22018
|
args: [{
|
21979
22019
|
name: 'safeUrl',
|
@@ -21988,10 +22028,10 @@ class AppPercentPipe {
|
|
21988
22028
|
transform(value, total, floor) {
|
21989
22029
|
return this.percentagePipe.transform(value, total, floor) + '%';
|
21990
22030
|
}
|
21991
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
21992
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.
|
22031
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AppPercentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
22032
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: AppPercentPipe, isStandalone: true, name: "percentage" }); }
|
21993
22033
|
}
|
21994
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
22034
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AppPercentPipe, decorators: [{
|
21995
22035
|
type: Pipe,
|
21996
22036
|
args: [{
|
21997
22037
|
name: 'percentage',
|
@@ -22344,10 +22384,10 @@ class BusinessResolver {
|
|
22344
22384
|
resolve() {
|
22345
22385
|
return this.soleDetailsService.getFirst();
|
22346
22386
|
}
|
22347
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
22348
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
22387
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BusinessResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
22388
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BusinessResolver, providedIn: 'root' }); }
|
22349
22389
|
}
|
22350
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
22390
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: BusinessResolver, decorators: [{
|
22351
22391
|
type: Injectable,
|
22352
22392
|
args: [{ providedIn: 'root' }]
|
22353
22393
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
@@ -22359,10 +22399,10 @@ class SoleDetailsResolver {
|
|
22359
22399
|
resolve() {
|
22360
22400
|
return this.soleDetails.getFirst();
|
22361
22401
|
}
|
22362
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
22363
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
22402
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDetailsResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
22403
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDetailsResolver, providedIn: 'root' }); }
|
22364
22404
|
}
|
22365
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
22405
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: SoleDetailsResolver, decorators: [{
|
22366
22406
|
type: Injectable,
|
22367
22407
|
args: [{ providedIn: 'root' }]
|
22368
22408
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
@@ -22964,6 +23004,41 @@ class LoanForm extends AbstractForm {
|
|
22964
23004
|
}
|
22965
23005
|
}
|
22966
23006
|
|
23007
|
+
class FinancialGoalForm extends AbstractForm {
|
23008
|
+
constructor(goal = plainToClass(FinancialGoal, {})) {
|
23009
|
+
super({
|
23010
|
+
type: new FormControl(goal.type || FinancialGoalTypeEnum.DEBIT, Validators.required),
|
23011
|
+
name: new FormControl(goal.name, Validators.required),
|
23012
|
+
bankAccount: new FormControl(goal.bankAccount, Validators.required),
|
23013
|
+
targetValue: new FormControl(goal.finalValue, Validators.required),
|
23014
|
+
initialValue: new FormControl({ value: goal.initialValue, disabled: true }, Validators.required),
|
23015
|
+
finalValue: new FormControl({ value: goal.finalValue, disabled: true }),
|
23016
|
+
startDate: new FormControl({ value: goal.startDate, disabled: true }, Validators.required),
|
23017
|
+
endDate: new FormControl(goal.endDate, Validators.required),
|
23018
|
+
paymentFrequency: new FormControl(goal.paymentFrequency || FinancialGoalPaymentFrequencyEnum.MONTHLY, Validators.required),
|
23019
|
+
paymentAmount: new FormControl(goal.paymentAmount, Validators.required),
|
23020
|
+
file: new FormControl(goal.file),
|
23021
|
+
description: new FormControl(goal.description),
|
23022
|
+
}, goal);
|
23023
|
+
this.includeDisabledFields = true;
|
23024
|
+
this.listenEvents();
|
23025
|
+
}
|
23026
|
+
listenEvents() {
|
23027
|
+
this.listenTypeChanges();
|
23028
|
+
this.listenBankAccountsChanges();
|
23029
|
+
}
|
23030
|
+
listenTypeChanges() {
|
23031
|
+
this.get('type').valueChanges.subscribe(() => {
|
23032
|
+
this.get('bankAccount').setValue(null, { onlySelf: true });
|
23033
|
+
});
|
23034
|
+
}
|
23035
|
+
listenBankAccountsChanges() {
|
23036
|
+
this.get('bankAccount').valueChanges.subscribe((bankAccount) => {
|
23037
|
+
this.get('initialValue').setValue(bankAccount?.currentBalance);
|
23038
|
+
});
|
23039
|
+
}
|
23040
|
+
}
|
23041
|
+
|
22967
23042
|
/**
|
22968
23043
|
* Check if at least one form field is true, otherwise form is invalid.
|
22969
23044
|
* Use with groups of boolean form controls (checkbox, toggle, etc.)
|
@@ -23166,10 +23241,10 @@ class UniqueEmailValidator {
|
|
23166
23241
|
validate(control) {
|
23167
23242
|
return this.userService.search(control.value).pipe(map(user => user ? { emailIsUsed: true } : null));
|
23168
23243
|
}
|
23169
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
23170
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
23244
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UniqueEmailValidator, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
23245
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UniqueEmailValidator, providedIn: 'root' }); }
|
23171
23246
|
}
|
23172
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
23247
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: UniqueEmailValidator, decorators: [{
|
23173
23248
|
type: Injectable,
|
23174
23249
|
args: [{ providedIn: 'root' }]
|
23175
23250
|
}], ctorParameters: () => [{ type: UserService }] });
|
@@ -23248,10 +23323,10 @@ class ClientMovementForm extends AbstractForm {
|
|
23248
23323
|
firmBranch: new FormControl(clientMovement.firmBranch, [Validators.required]),
|
23249
23324
|
}, clientMovement);
|
23250
23325
|
}
|
23251
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
23252
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
23326
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientMovementForm, deps: [{ token: ClientMovement }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
23327
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientMovementForm, providedIn: 'root' }); }
|
23253
23328
|
}
|
23254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
23329
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: ClientMovementForm, decorators: [{
|
23255
23330
|
type: Injectable,
|
23256
23331
|
args: [{
|
23257
23332
|
providedIn: 'root'
|
@@ -23264,10 +23339,10 @@ class EmployeeDetailsForm extends AbstractForm {
|
|
23264
23339
|
firmBranches: new FormControl(employeeDetails.firmBranches, [Validators.required]),
|
23265
23340
|
}, employeeDetails);
|
23266
23341
|
}
|
23267
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
23268
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
23342
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeDetailsForm, deps: [{ token: EmployeeDetails }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
23343
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeDetailsForm, providedIn: 'root' }); }
|
23269
23344
|
}
|
23270
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
23345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: EmployeeDetailsForm, decorators: [{
|
23271
23346
|
type: Injectable,
|
23272
23347
|
args: [{
|
23273
23348
|
providedIn: 'root'
|
@@ -26551,5 +26626,5 @@ var MessagesEnum;
|
|
26551
26626
|
* Generated bundle index. Do not edit.
|
26552
26627
|
*/
|
26553
26628
|
|
26554
|
-
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, 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, 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, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialGoal, FinancialGoalService, 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, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, 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, LoanFrequencyEnum, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, 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, SalaryForecastFrequencyEnum, 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, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
|
26629
|
+
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, 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, 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, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialGoal, FinancialGoalCollection, FinancialGoalForm, FinancialGoalPaymentFrequencyEnum, 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, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, 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, LoanFrequencyEnum, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, 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, SalaryForecastFrequencyEnum, 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, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
|
26555
26630
|
//# sourceMappingURL=taxtank-core.mjs.map
|