taxtank-core 3.0.19 → 3.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/taxtank-core-common.mjs +20 -20
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +541 -497
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +7 -6
- package/{index.d.ts → types/taxtank-core.d.ts} +26 -5
- /package/{common/index.d.ts → types/taxtank-core-common.d.ts} +0 -0
|
@@ -42,7 +42,7 @@ import pick from 'lodash/pick';
|
|
|
42
42
|
import { checkAdBlock } from 'adblock-checker';
|
|
43
43
|
import { jsPDF } from 'jspdf';
|
|
44
44
|
import { applyPlugin } from 'jspdf-autotable';
|
|
45
|
-
import * as xlsx from '
|
|
45
|
+
import * as xlsx from 'xlsx-js-style';
|
|
46
46
|
import * as FileSaver from 'file-saver';
|
|
47
47
|
import { PercentagePipe } from 'ngx-pipes';
|
|
48
48
|
import * as i1$2 from '@angular/platform-browser';
|
|
@@ -64,10 +64,10 @@ class PdfService {
|
|
|
64
64
|
formData.append('landscape', landscape ? '1' : '0');
|
|
65
65
|
return this.http.post(`${this.environment.apiV2}/pdf/html`, formData, { responseType: 'blob' });
|
|
66
66
|
}
|
|
67
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
68
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
67
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
68
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfService, providedIn: 'root' }); }
|
|
69
69
|
}
|
|
70
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
70
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfService, decorators: [{
|
|
71
71
|
type: Injectable,
|
|
72
72
|
args: [{
|
|
73
73
|
providedIn: 'root'
|
|
@@ -107,6 +107,7 @@ let Country$1 = class Country extends AbstractModel {
|
|
|
107
107
|
class Country extends Country$1 {
|
|
108
108
|
static { this.australia = plainToClass(Country, { id: 14, name: 'Australia', code: 'au', callingCode: '61' }); }
|
|
109
109
|
static { this.popularIds = [14, 159, 235, 236, 105]; }
|
|
110
|
+
static { this.corelogicList = [14, 159]; }
|
|
110
111
|
/**
|
|
111
112
|
* Return country name with phone code
|
|
112
113
|
*/
|
|
@@ -9425,6 +9426,20 @@ const PALETTE_EQUITY = [
|
|
|
9425
9426
|
COLORS.red
|
|
9426
9427
|
];
|
|
9427
9428
|
|
|
9429
|
+
/**
|
|
9430
|
+
* dictionary created to provide similar table appearance like alignment etc.
|
|
9431
|
+
*/
|
|
9432
|
+
const EXPORT_CELL_STYLES = {
|
|
9433
|
+
'col-right': {
|
|
9434
|
+
pdf: { halign: 'right' },
|
|
9435
|
+
xlsx: { alignment: { horizontal: 'right' } },
|
|
9436
|
+
},
|
|
9437
|
+
'text-right': {
|
|
9438
|
+
pdf: { halign: 'right' },
|
|
9439
|
+
xlsx: { alignment: { horizontal: 'right' } },
|
|
9440
|
+
},
|
|
9441
|
+
};
|
|
9442
|
+
|
|
9428
9443
|
/**
|
|
9429
9444
|
* Used in the budget variance report
|
|
9430
9445
|
*/
|
|
@@ -13269,10 +13284,10 @@ class EventDispatcherService {
|
|
|
13269
13284
|
dispatch2(event) {
|
|
13270
13285
|
this.eventSubject2.next(event);
|
|
13271
13286
|
}
|
|
13272
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13273
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13287
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13288
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EventDispatcherService, providedIn: 'root' }); }
|
|
13274
13289
|
}
|
|
13275
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13290
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EventDispatcherService, decorators: [{
|
|
13276
13291
|
type: Injectable,
|
|
13277
13292
|
args: [{
|
|
13278
13293
|
providedIn: 'root'
|
|
@@ -13307,10 +13322,10 @@ class SseService {
|
|
|
13307
13322
|
})
|
|
13308
13323
|
.pipe(map((messageEvent) => JSON.parse(messageEvent.data)));
|
|
13309
13324
|
}
|
|
13310
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13311
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13325
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SseService, deps: [{ token: i0.NgZone }, { token: i3.JwtService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13326
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SseService, providedIn: 'root' }); }
|
|
13312
13327
|
}
|
|
13313
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13328
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SseService, decorators: [{
|
|
13314
13329
|
type: Injectable,
|
|
13315
13330
|
args: [{
|
|
13316
13331
|
providedIn: 'root'
|
|
@@ -13398,10 +13413,10 @@ class DataService {
|
|
|
13398
13413
|
setCache(data) {
|
|
13399
13414
|
this.cache = this.createCollectionInstance(this.collectionClass, data);
|
|
13400
13415
|
}
|
|
13401
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13402
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13416
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DataService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13417
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DataService, providedIn: 'root' }); }
|
|
13403
13418
|
}
|
|
13404
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13419
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DataService, decorators: [{
|
|
13405
13420
|
type: Injectable,
|
|
13406
13421
|
args: [{
|
|
13407
13422
|
providedIn: 'root'
|
|
@@ -13469,10 +13484,10 @@ class ToastService {
|
|
|
13469
13484
|
message,
|
|
13470
13485
|
}));
|
|
13471
13486
|
}
|
|
13472
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13473
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13487
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13488
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ToastService, providedIn: 'root' }); }
|
|
13474
13489
|
}
|
|
13475
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13490
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ToastService, decorators: [{
|
|
13476
13491
|
type: Injectable,
|
|
13477
13492
|
args: [{
|
|
13478
13493
|
providedIn: 'root'
|
|
@@ -13865,10 +13880,10 @@ let RestService$1 = class RestService extends DataService {
|
|
|
13865
13880
|
this.handleResponse([change.model], change.method);
|
|
13866
13881
|
});
|
|
13867
13882
|
}
|
|
13868
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13869
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13883
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13884
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
|
13870
13885
|
};
|
|
13871
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13886
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService$1, decorators: [{
|
|
13872
13887
|
type: Injectable,
|
|
13873
13888
|
args: [{
|
|
13874
13889
|
providedIn: 'root'
|
|
@@ -14011,10 +14026,10 @@ class BankAccountService extends RestService$1 {
|
|
|
14011
14026
|
}
|
|
14012
14027
|
});
|
|
14013
14028
|
}
|
|
14014
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14015
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14029
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: SseService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14030
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountService, providedIn: 'root' }); }
|
|
14016
14031
|
}
|
|
14017
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14032
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountService, decorators: [{
|
|
14018
14033
|
type: Injectable,
|
|
14019
14034
|
args: [{
|
|
14020
14035
|
providedIn: 'root'
|
|
@@ -14137,10 +14152,10 @@ class BankConnectionService extends RestService$1 {
|
|
|
14137
14152
|
}
|
|
14138
14153
|
});
|
|
14139
14154
|
}
|
|
14140
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14141
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14155
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankConnectionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14156
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankConnectionService, providedIn: 'root' }); }
|
|
14142
14157
|
}
|
|
14143
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14158
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankConnectionService, decorators: [{
|
|
14144
14159
|
type: Injectable,
|
|
14145
14160
|
args: [{
|
|
14146
14161
|
providedIn: 'root'
|
|
@@ -14186,10 +14201,10 @@ class BankTransactionService extends RestService$1 {
|
|
|
14186
14201
|
}
|
|
14187
14202
|
});
|
|
14188
14203
|
}
|
|
14189
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14190
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14204
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14205
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionService, providedIn: 'root' }); }
|
|
14191
14206
|
}
|
|
14192
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionService, decorators: [{
|
|
14193
14208
|
type: Injectable,
|
|
14194
14209
|
args: [{
|
|
14195
14210
|
providedIn: 'root'
|
|
@@ -14218,10 +14233,10 @@ class BankTransactionImportService extends RestService$1 {
|
|
|
14218
14233
|
formData.append('file', file);
|
|
14219
14234
|
return this.importFile(formData, `${this.environment.apiV2}/bank-accounts/${bankAccountId}/bank-transaction-imports`);
|
|
14220
14235
|
}
|
|
14221
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14222
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14236
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionImportService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14237
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionImportService, providedIn: 'root' }); }
|
|
14223
14238
|
}
|
|
14224
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14239
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionImportService, decorators: [{
|
|
14225
14240
|
type: Injectable,
|
|
14226
14241
|
args: [{
|
|
14227
14242
|
providedIn: 'root'
|
|
@@ -14266,10 +14281,10 @@ class BasiqTokenService extends RestService$1 {
|
|
|
14266
14281
|
const now = new Date().getTime();
|
|
14267
14282
|
return new BasiqToken(tokenResponse['access_token'], new Date(now + tokenResponse['expires_in'] * 1000));
|
|
14268
14283
|
}
|
|
14269
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14270
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14284
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14285
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqTokenService, providedIn: 'root' }); }
|
|
14271
14286
|
}
|
|
14272
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14287
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqTokenService, decorators: [{
|
|
14273
14288
|
type: Injectable,
|
|
14274
14289
|
args: [{
|
|
14275
14290
|
providedIn: 'root'
|
|
@@ -14311,10 +14326,10 @@ class BasiqService extends RestService$1 {
|
|
|
14311
14326
|
}
|
|
14312
14327
|
});
|
|
14313
14328
|
}
|
|
14314
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14315
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14329
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14330
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqService, providedIn: 'root' }); }
|
|
14316
14331
|
}
|
|
14317
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14332
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqService, decorators: [{
|
|
14318
14333
|
type: Injectable,
|
|
14319
14334
|
args: [{
|
|
14320
14335
|
providedIn: 'root'
|
|
@@ -14377,10 +14392,10 @@ class MixpanelService {
|
|
|
14377
14392
|
}
|
|
14378
14393
|
mixpanel['track_pageview']();
|
|
14379
14394
|
}
|
|
14380
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14381
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14395
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MixpanelService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14396
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MixpanelService, providedIn: 'root' }); }
|
|
14382
14397
|
}
|
|
14383
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MixpanelService, decorators: [{
|
|
14384
14399
|
type: Injectable,
|
|
14385
14400
|
args: [{
|
|
14386
14401
|
providedIn: 'root'
|
|
@@ -14447,10 +14462,10 @@ class JwtService extends JwtHelperService {
|
|
|
14447
14462
|
isMe(userId) {
|
|
14448
14463
|
return this.decode().id === userId;
|
|
14449
14464
|
}
|
|
14450
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14451
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14465
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14466
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtService, providedIn: 'root' }); }
|
|
14452
14467
|
}
|
|
14453
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14468
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtService, decorators: [{
|
|
14454
14469
|
type: Injectable,
|
|
14455
14470
|
args: [{
|
|
14456
14471
|
providedIn: 'root'
|
|
@@ -14491,10 +14506,10 @@ class AuthService {
|
|
|
14491
14506
|
this.jwtService.destroyTokens();
|
|
14492
14507
|
location.replace(url);
|
|
14493
14508
|
}
|
|
14494
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14495
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14509
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AuthService, deps: [{ token: i1.HttpClient }, { token: JwtService }, { token: MixpanelService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14510
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AuthService, providedIn: 'root' }); }
|
|
14496
14511
|
}
|
|
14497
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14512
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AuthService, decorators: [{
|
|
14498
14513
|
type: Injectable,
|
|
14499
14514
|
args: [{
|
|
14500
14515
|
providedIn: 'root'
|
|
@@ -14631,10 +14646,10 @@ class JwtInterceptor {
|
|
|
14631
14646
|
// });
|
|
14632
14647
|
});
|
|
14633
14648
|
}
|
|
14634
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14635
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14649
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtInterceptor, deps: [{ token: JwtService }, { token: AuthService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14650
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtInterceptor }); }
|
|
14636
14651
|
}
|
|
14637
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14652
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: JwtInterceptor, decorators: [{
|
|
14638
14653
|
type: Injectable
|
|
14639
14654
|
}], ctorParameters: () => [{ type: JwtService }, { type: AuthService }, { type: undefined, decorators: [{
|
|
14640
14655
|
type: Inject,
|
|
@@ -14642,9 +14657,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
|
|
|
14642
14657
|
}] }] });
|
|
14643
14658
|
|
|
14644
14659
|
let InterceptorsModule$1 = class InterceptorsModule {
|
|
14645
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14646
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
14647
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
14660
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
14661
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule }); }
|
|
14662
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, providers: [
|
|
14648
14663
|
{
|
|
14649
14664
|
provide: HTTP_INTERCEPTORS,
|
|
14650
14665
|
useClass: JwtInterceptor,
|
|
@@ -14652,7 +14667,7 @@ let InterceptorsModule$1 = class InterceptorsModule {
|
|
|
14652
14667
|
}
|
|
14653
14668
|
] }); }
|
|
14654
14669
|
};
|
|
14655
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14670
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule$1, decorators: [{
|
|
14656
14671
|
type: NgModule,
|
|
14657
14672
|
args: [{
|
|
14658
14673
|
providers: [
|
|
@@ -14682,13 +14697,13 @@ class CommonModule {
|
|
|
14682
14697
|
]
|
|
14683
14698
|
};
|
|
14684
14699
|
}
|
|
14685
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14686
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
14700
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
14701
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
|
|
14687
14702
|
InterceptorsModule$1] }); }
|
|
14688
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
14703
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CommonModule, imports: [CommonModule$1,
|
|
14689
14704
|
InterceptorsModule$1] }); }
|
|
14690
14705
|
}
|
|
14691
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14706
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CommonModule, decorators: [{
|
|
14692
14707
|
type: NgModule,
|
|
14693
14708
|
args: [{
|
|
14694
14709
|
declarations: [],
|
|
@@ -14763,10 +14778,10 @@ class BasiqUserService extends RestService$1 {
|
|
|
14763
14778
|
window.location.replace(url);
|
|
14764
14779
|
}));
|
|
14765
14780
|
}
|
|
14766
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14767
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14781
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqUserService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14782
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqUserService, providedIn: 'root' }); }
|
|
14768
14783
|
}
|
|
14769
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasiqUserService, decorators: [{
|
|
14770
14785
|
type: Injectable,
|
|
14771
14786
|
args: [{
|
|
14772
14787
|
providedIn: 'root'
|
|
@@ -14784,10 +14799,10 @@ class BankTransactionCommentService extends RestService$1 {
|
|
|
14784
14799
|
this.endpointUri = 'bank-transaction-comments';
|
|
14785
14800
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
14786
14801
|
}
|
|
14787
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14788
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14802
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionCommentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14803
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionCommentService, providedIn: 'root' }); }
|
|
14789
14804
|
}
|
|
14790
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14805
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankTransactionCommentService, decorators: [{
|
|
14791
14806
|
type: Injectable,
|
|
14792
14807
|
args: [{
|
|
14793
14808
|
providedIn: 'root'
|
|
@@ -14813,10 +14828,10 @@ class BankService extends RestService$1 {
|
|
|
14813
14828
|
this.endpointUri = 'banks';
|
|
14814
14829
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
14815
14830
|
}
|
|
14816
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14817
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14831
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14832
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankService, providedIn: 'root' }); }
|
|
14818
14833
|
}
|
|
14819
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14834
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankService, decorators: [{
|
|
14820
14835
|
type: Injectable,
|
|
14821
14836
|
args: [{
|
|
14822
14837
|
providedIn: 'root'
|
|
@@ -14842,10 +14857,10 @@ class ExchangeRateService extends RestService$1 {
|
|
|
14842
14857
|
this.collectionClass = Collection;
|
|
14843
14858
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
14844
14859
|
}
|
|
14845
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14846
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14860
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExchangeRateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14861
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExchangeRateService, providedIn: 'root' }); }
|
|
14847
14862
|
}
|
|
14848
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14863
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExchangeRateService, decorators: [{
|
|
14849
14864
|
type: Injectable,
|
|
14850
14865
|
args: [{
|
|
14851
14866
|
providedIn: 'root'
|
|
@@ -14861,10 +14876,10 @@ class BudgetService extends RestService$1 {
|
|
|
14861
14876
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
14862
14877
|
this.roles = [UserRolesEnum.MONEY_TANK];
|
|
14863
14878
|
}
|
|
14864
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14865
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14879
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14880
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' }); }
|
|
14866
14881
|
}
|
|
14867
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetService, decorators: [{
|
|
14868
14883
|
type: Injectable,
|
|
14869
14884
|
args: [{
|
|
14870
14885
|
providedIn: 'root'
|
|
@@ -14888,10 +14903,10 @@ class BudgetRuleService extends RestService$1 {
|
|
|
14888
14903
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
14889
14904
|
this.roles = [UserRolesEnum.MONEY_TANK];
|
|
14890
14905
|
}
|
|
14891
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14892
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14906
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14907
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetRuleService, providedIn: 'root' }); }
|
|
14893
14908
|
}
|
|
14894
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14909
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BudgetRuleService, decorators: [{
|
|
14895
14910
|
type: Injectable,
|
|
14896
14911
|
args: [{
|
|
14897
14912
|
providedIn: 'root'
|
|
@@ -14917,10 +14932,10 @@ class FinancialGoalService extends RestService$1 {
|
|
|
14917
14932
|
complete(goal) {
|
|
14918
14933
|
return this.put(Object.assign({}, goal, { status: FinancialGoalStatusEnum.COMPLETE, finalValue: goal.bankAccount.convertedBalance }));
|
|
14919
14934
|
}
|
|
14920
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14921
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14935
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialGoalService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14936
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialGoalService, providedIn: 'root' }); }
|
|
14922
14937
|
}
|
|
14923
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14938
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialGoalService, decorators: [{
|
|
14924
14939
|
type: Injectable,
|
|
14925
14940
|
args: [{
|
|
14926
14941
|
providedIn: 'root'
|
|
@@ -14951,10 +14966,10 @@ class CalendarReminderService extends RestService$1 {
|
|
|
14951
14966
|
this.listenCSE(SoleBusiness, this.refreshCache, ['put']);
|
|
14952
14967
|
this.listenCSE(IncomeSource, this.refreshCache, ['put']);
|
|
14953
14968
|
}
|
|
14954
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14955
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14969
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CalendarReminderService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14970
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CalendarReminderService, providedIn: 'root' }); }
|
|
14956
14971
|
}
|
|
14957
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14972
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CalendarReminderService, decorators: [{
|
|
14958
14973
|
type: Injectable,
|
|
14959
14974
|
args: [{
|
|
14960
14975
|
providedIn: 'root',
|
|
@@ -14983,10 +14998,10 @@ class ChartAccountsDepreciationService extends RestService$1 {
|
|
|
14983
14998
|
this.collectionClass = Collection;
|
|
14984
14999
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
14985
15000
|
}
|
|
14986
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14987
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15001
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15002
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' }); }
|
|
14988
15003
|
}
|
|
14989
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15004
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
|
|
14990
15005
|
type: Injectable,
|
|
14991
15006
|
args: [{
|
|
14992
15007
|
providedIn: 'root'
|
|
@@ -15025,10 +15040,10 @@ class ChartAccountsService extends RestService$1 {
|
|
|
15025
15040
|
return headings;
|
|
15026
15041
|
}));
|
|
15027
15042
|
}
|
|
15028
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15029
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15043
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15044
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsService, providedIn: 'root' }); }
|
|
15030
15045
|
}
|
|
15031
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15046
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsService, decorators: [{
|
|
15032
15047
|
type: Injectable,
|
|
15033
15048
|
args: [{
|
|
15034
15049
|
providedIn: 'root'
|
|
@@ -15112,10 +15127,10 @@ class ChatService extends RestService$1 {
|
|
|
15112
15127
|
this.setCache(cache, true);
|
|
15113
15128
|
}, ['post']);
|
|
15114
15129
|
}
|
|
15115
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15116
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15130
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChatService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15131
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChatService, providedIn: 'root' }); }
|
|
15117
15132
|
}
|
|
15118
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChatService, decorators: [{
|
|
15119
15134
|
type: Injectable,
|
|
15120
15135
|
args: [{
|
|
15121
15136
|
providedIn: 'root'
|
|
@@ -15145,10 +15160,10 @@ class MessageService extends RestService$1 {
|
|
|
15145
15160
|
getUnreadChatsAmount() {
|
|
15146
15161
|
return this.get().pipe(map((messages) => messages.getUnreadChatsAmount()));
|
|
15147
15162
|
}
|
|
15148
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15149
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15163
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15164
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageService, providedIn: 'root' }); }
|
|
15150
15165
|
}
|
|
15151
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15166
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageService, decorators: [{
|
|
15152
15167
|
type: Injectable,
|
|
15153
15168
|
args: [{
|
|
15154
15169
|
providedIn: 'root'
|
|
@@ -15217,10 +15232,10 @@ class MessageDocumentService extends RestService$1 {
|
|
|
15217
15232
|
addBatch(chatId, files) {
|
|
15218
15233
|
return combineLatest(files.map((file) => this.add(chatId, file))).pipe(map((docsBase) => docsBase.map((docBase) => plainToClass(MessageDocument, docBase))));
|
|
15219
15234
|
}
|
|
15220
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15221
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15235
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageDocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15236
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageDocumentService, providedIn: 'root' }); }
|
|
15222
15237
|
}
|
|
15223
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15238
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MessageDocumentService, decorators: [{
|
|
15224
15239
|
type: Injectable,
|
|
15225
15240
|
args: [{
|
|
15226
15241
|
providedIn: 'root'
|
|
@@ -15241,10 +15256,10 @@ class DashboardSettingsService extends RestService$1 {
|
|
|
15241
15256
|
this.endpointUri = 'dashboard-settings';
|
|
15242
15257
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
|
|
15243
15258
|
}
|
|
15244
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15245
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15259
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DashboardSettingsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15260
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DashboardSettingsService, providedIn: 'root' }); }
|
|
15246
15261
|
}
|
|
15247
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DashboardSettingsService, decorators: [{
|
|
15248
15263
|
type: Injectable,
|
|
15249
15264
|
args: [{
|
|
15250
15265
|
providedIn: 'root'
|
|
@@ -15334,10 +15349,10 @@ class DepreciationService extends RestService$1 {
|
|
|
15334
15349
|
this.refreshCache();
|
|
15335
15350
|
});
|
|
15336
15351
|
}
|
|
15337
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15338
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15352
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15353
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationService, providedIn: 'root' }); }
|
|
15339
15354
|
}
|
|
15340
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15355
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationService, decorators: [{
|
|
15341
15356
|
type: Injectable,
|
|
15342
15357
|
args: [{
|
|
15343
15358
|
providedIn: 'root'
|
|
@@ -15359,10 +15374,10 @@ class DepreciationCapitalProjectService extends RestService$1 {
|
|
|
15359
15374
|
this.endpointUri = 'depreciation-capital-projects';
|
|
15360
15375
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
15361
15376
|
}
|
|
15362
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15363
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15377
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationCapitalProjectService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15378
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' }); }
|
|
15364
15379
|
}
|
|
15365
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15380
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
|
|
15366
15381
|
type: Injectable,
|
|
15367
15382
|
args: [{
|
|
15368
15383
|
providedIn: 'root'
|
|
@@ -15385,10 +15400,10 @@ class PriorDepreciationService extends RestService$1 {
|
|
|
15385
15400
|
const financialYear = new FinancialYear(new FinancialYear().year - 1);
|
|
15386
15401
|
return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(depreciations => depreciations.filterByFinancialYear('date', null, financialYear)));
|
|
15387
15402
|
}
|
|
15388
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15389
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15403
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15404
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorDepreciationService, providedIn: 'root' }); }
|
|
15390
15405
|
}
|
|
15391
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15406
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorDepreciationService, decorators: [{
|
|
15392
15407
|
type: Injectable,
|
|
15393
15408
|
args: [{
|
|
15394
15409
|
providedIn: 'root'
|
|
@@ -15414,10 +15429,10 @@ class DocumentFolderService extends RestService$1 {
|
|
|
15414
15429
|
this.modelClass = DocumentFolder;
|
|
15415
15430
|
this.disabledMethods = ['deleteBatch', 'postBatch', 'putBatch'];
|
|
15416
15431
|
}
|
|
15417
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15418
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15432
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15433
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentFolderService, providedIn: 'root' }); }
|
|
15419
15434
|
}
|
|
15420
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15435
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentFolderService, decorators: [{
|
|
15421
15436
|
type: Injectable,
|
|
15422
15437
|
args: [{
|
|
15423
15438
|
providedIn: 'root'
|
|
@@ -15442,10 +15457,10 @@ class DocumentService extends RestService$1 {
|
|
|
15442
15457
|
postFiles(folder, files) {
|
|
15443
15458
|
return this.postParallel(files.map(file => plainToClass(Document, { folder, file })));
|
|
15444
15459
|
}
|
|
15445
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15446
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15460
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15461
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentService, providedIn: 'root' }); }
|
|
15447
15462
|
}
|
|
15448
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15463
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: DocumentService, decorators: [{
|
|
15449
15464
|
type: Injectable,
|
|
15450
15465
|
args: [{
|
|
15451
15466
|
providedIn: 'root'
|
|
@@ -15530,10 +15545,10 @@ class FacebookService {
|
|
|
15530
15545
|
});
|
|
15531
15546
|
});
|
|
15532
15547
|
}
|
|
15533
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15534
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15548
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FacebookService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15549
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FacebookService, providedIn: 'root' }); }
|
|
15535
15550
|
}
|
|
15536
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15551
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FacebookService, decorators: [{
|
|
15537
15552
|
type: Injectable,
|
|
15538
15553
|
args: [{
|
|
15539
15554
|
providedIn: 'root'
|
|
@@ -15600,10 +15615,10 @@ class GoogleService {
|
|
|
15600
15615
|
logout() {
|
|
15601
15616
|
google.accounts.id.disableAutoSelect();
|
|
15602
15617
|
}
|
|
15603
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15604
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15618
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GoogleService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15619
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GoogleService, providedIn: 'root' }); }
|
|
15605
15620
|
}
|
|
15606
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15621
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GoogleService, decorators: [{
|
|
15607
15622
|
type: Injectable,
|
|
15608
15623
|
args: [{
|
|
15609
15624
|
providedIn: 'root'
|
|
@@ -15635,10 +15650,10 @@ class FileService extends RestService$1 {
|
|
|
15635
15650
|
download(file) {
|
|
15636
15651
|
return this.http.get(`${this.apiUrl}/${file.id}/download`, { responseType: 'blob' });
|
|
15637
15652
|
}
|
|
15638
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15639
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15653
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15654
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FileService, providedIn: 'root' }); }
|
|
15640
15655
|
}
|
|
15641
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15656
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FileService, decorators: [{
|
|
15642
15657
|
type: Injectable,
|
|
15643
15658
|
args: [{
|
|
15644
15659
|
providedIn: 'root'
|
|
@@ -15728,10 +15743,10 @@ class ClientInviteService extends RestService$1 {
|
|
|
15728
15743
|
}
|
|
15729
15744
|
});
|
|
15730
15745
|
}
|
|
15731
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15732
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15746
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientInviteService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15747
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientInviteService, providedIn: 'root' }); }
|
|
15733
15748
|
}
|
|
15734
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15749
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientInviteService, decorators: [{
|
|
15735
15750
|
type: Injectable,
|
|
15736
15751
|
args: [{
|
|
15737
15752
|
providedIn: 'root'
|
|
@@ -15821,10 +15836,10 @@ class ClientMovementService extends RestService$1 {
|
|
|
15821
15836
|
// this.updateCache([clientMovement], 'delete');
|
|
15822
15837
|
}));
|
|
15823
15838
|
}
|
|
15824
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15825
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15839
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15840
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementService, providedIn: 'root' }); }
|
|
15826
15841
|
}
|
|
15827
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15842
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementService, decorators: [{
|
|
15828
15843
|
type: Injectable,
|
|
15829
15844
|
args: [{
|
|
15830
15845
|
providedIn: 'root'
|
|
@@ -15885,10 +15900,10 @@ class EmployeeService extends RestService$1 {
|
|
|
15885
15900
|
index === -1 ? employee.roles.push(role) : employee.roles.splice(index, 1);
|
|
15886
15901
|
return super.put(employee, `${this.environment.apiV2}/${this.endpointUri}/${employee.id}`);
|
|
15887
15902
|
}
|
|
15888
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15889
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15903
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15904
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeService, providedIn: 'root' }); }
|
|
15890
15905
|
}
|
|
15891
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15906
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeService, decorators: [{
|
|
15892
15907
|
type: Injectable,
|
|
15893
15908
|
args: [{
|
|
15894
15909
|
providedIn: 'root'
|
|
@@ -15949,10 +15964,10 @@ class EmployeeInviteService extends RestService$1 {
|
|
|
15949
15964
|
return updatedInvite;
|
|
15950
15965
|
}));
|
|
15951
15966
|
}
|
|
15952
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15953
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15967
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15968
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' }); }
|
|
15954
15969
|
}
|
|
15955
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15970
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeInviteService, decorators: [{
|
|
15956
15971
|
type: Injectable,
|
|
15957
15972
|
args: [{
|
|
15958
15973
|
providedIn: 'root'
|
|
@@ -15976,10 +15991,10 @@ class ClientPortfolioReportService {
|
|
|
15976
15991
|
return new ClientPortfolioReportCollection(clientReports);
|
|
15977
15992
|
}));
|
|
15978
15993
|
}
|
|
15979
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15980
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15994
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientPortfolioReportService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15995
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' }); }
|
|
15981
15996
|
}
|
|
15982
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15997
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
|
|
15983
15998
|
type: Injectable,
|
|
15984
15999
|
args: [{
|
|
15985
16000
|
providedIn: 'root'
|
|
@@ -16023,10 +16038,10 @@ class FirmService {
|
|
|
16023
16038
|
this.firmSubject.next(updatedInstance);
|
|
16024
16039
|
}));
|
|
16025
16040
|
}
|
|
16026
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16027
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16041
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16042
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmService, providedIn: 'root' }); }
|
|
16028
16043
|
}
|
|
16029
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16044
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmService, decorators: [{
|
|
16030
16045
|
type: Injectable,
|
|
16031
16046
|
args: [{
|
|
16032
16047
|
providedIn: 'root'
|
|
@@ -16044,10 +16059,10 @@ class FirmBranchService extends RestService$1 {
|
|
|
16044
16059
|
this.collectionClass = (Collection);
|
|
16045
16060
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
16046
16061
|
}
|
|
16047
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16048
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16062
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmBranchService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16063
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmBranchService, providedIn: 'root' }); }
|
|
16049
16064
|
}
|
|
16050
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16065
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FirmBranchService, decorators: [{
|
|
16051
16066
|
type: Injectable,
|
|
16052
16067
|
args: [{
|
|
16053
16068
|
providedIn: 'root'
|
|
@@ -16288,10 +16303,10 @@ class RestService {
|
|
|
16288
16303
|
getCache() {
|
|
16289
16304
|
return clone(this.cache);
|
|
16290
16305
|
}
|
|
16291
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16292
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16306
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16307
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
|
16293
16308
|
}
|
|
16294
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16309
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RestService, decorators: [{
|
|
16295
16310
|
type: Injectable,
|
|
16296
16311
|
args: [{
|
|
16297
16312
|
providedIn: 'root'
|
|
@@ -16366,10 +16381,10 @@ class IncomeSourceForecastService extends RestService {
|
|
|
16366
16381
|
return incomeSource.incomeSourceForecasts;
|
|
16367
16382
|
}).flat();
|
|
16368
16383
|
}
|
|
16369
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16370
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16384
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16385
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' }); }
|
|
16371
16386
|
}
|
|
16372
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16387
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
|
|
16373
16388
|
type: Injectable,
|
|
16374
16389
|
args: [{
|
|
16375
16390
|
providedIn: 'root'
|
|
@@ -16443,10 +16458,10 @@ class SalaryForecastService extends RestService {
|
|
|
16443
16458
|
return incomeSource.salaryForecasts;
|
|
16444
16459
|
}).flat();
|
|
16445
16460
|
}
|
|
16446
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16447
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16461
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SalaryForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16462
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SalaryForecastService, providedIn: 'root' }); }
|
|
16448
16463
|
}
|
|
16449
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SalaryForecastService, decorators: [{
|
|
16450
16465
|
type: Injectable,
|
|
16451
16466
|
args: [{
|
|
16452
16467
|
providedIn: 'root'
|
|
@@ -16528,10 +16543,10 @@ class SoleForecastService extends RestService {
|
|
|
16528
16543
|
this.refreshCache();
|
|
16529
16544
|
});
|
|
16530
16545
|
}
|
|
16531
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16532
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16546
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16547
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleForecastService, providedIn: 'root' }); }
|
|
16533
16548
|
}
|
|
16534
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16549
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleForecastService, decorators: [{
|
|
16535
16550
|
type: Injectable,
|
|
16536
16551
|
args: [{
|
|
16537
16552
|
providedIn: 'root'
|
|
@@ -16614,10 +16629,10 @@ class IncomeSourceService extends RestService {
|
|
|
16614
16629
|
this.refreshCache();
|
|
16615
16630
|
});
|
|
16616
16631
|
}
|
|
16617
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16618
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16632
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16633
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceService, providedIn: 'root' }); }
|
|
16619
16634
|
}
|
|
16620
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16635
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceService, decorators: [{
|
|
16621
16636
|
type: Injectable,
|
|
16622
16637
|
args: [{
|
|
16623
16638
|
providedIn: 'root'
|
|
@@ -16690,10 +16705,10 @@ class BorrowingExpenseService {
|
|
|
16690
16705
|
return combinedBorrowingExpenses;
|
|
16691
16706
|
}));
|
|
16692
16707
|
}
|
|
16693
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16694
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16708
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingExpenseService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16709
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' }); }
|
|
16695
16710
|
}
|
|
16696
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16711
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingExpenseService, decorators: [{
|
|
16697
16712
|
type: Injectable,
|
|
16698
16713
|
args: [{
|
|
16699
16714
|
providedIn: 'root'
|
|
@@ -16777,10 +16792,10 @@ class LoanService extends RestService$1 {
|
|
|
16777
16792
|
delete(loan) {
|
|
16778
16793
|
return super.delete(loan, `${this.environment.apiV2}/loans/${loan.id}`);
|
|
16779
16794
|
}
|
|
16780
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16781
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16795
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: LoanService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16796
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: LoanService, providedIn: 'root' }); }
|
|
16782
16797
|
}
|
|
16783
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16798
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: LoanService, decorators: [{
|
|
16784
16799
|
type: Injectable,
|
|
16785
16800
|
args: [{
|
|
16786
16801
|
providedIn: 'root'
|
|
@@ -16806,10 +16821,10 @@ class BorrowingReportService extends RestService$1 {
|
|
|
16806
16821
|
this.collectionClass = Collection;
|
|
16807
16822
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
16808
16823
|
}
|
|
16809
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16810
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16824
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16825
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingReportService, providedIn: 'root' }); }
|
|
16811
16826
|
}
|
|
16812
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16827
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BorrowingReportService, decorators: [{
|
|
16813
16828
|
type: Injectable,
|
|
16814
16829
|
args: [{
|
|
16815
16830
|
providedIn: 'root'
|
|
@@ -16834,10 +16849,10 @@ class PropertyCategoryService extends RestService$1 {
|
|
|
16834
16849
|
this.endpointUri = 'properties/categories';
|
|
16835
16850
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
16836
16851
|
}
|
|
16837
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16838
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16852
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16853
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' }); }
|
|
16839
16854
|
}
|
|
16840
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16855
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryService, decorators: [{
|
|
16841
16856
|
type: Injectable,
|
|
16842
16857
|
args: [{
|
|
16843
16858
|
providedIn: 'root'
|
|
@@ -16859,10 +16874,10 @@ class PropertyCategoryMovementService extends RestService$1 {
|
|
|
16859
16874
|
this.listenCSE(Property, this.refreshCache, ['post']);
|
|
16860
16875
|
this.listenCSE(PropertyValuation, this.refreshCache);
|
|
16861
16876
|
}
|
|
16862
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16863
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16877
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16878
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' }); }
|
|
16864
16879
|
}
|
|
16865
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16880
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
|
|
16866
16881
|
type: Injectable,
|
|
16867
16882
|
args: [{
|
|
16868
16883
|
providedIn: 'root'
|
|
@@ -16943,10 +16958,10 @@ class TaxExemptionService extends DataService {
|
|
|
16943
16958
|
this.collectionClass = TaxExemptionCollection;
|
|
16944
16959
|
this.setCache(TaxExemptions);
|
|
16945
16960
|
}
|
|
16946
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16947
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16961
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxExemptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16962
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxExemptionService, providedIn: 'root' }); }
|
|
16948
16963
|
}
|
|
16949
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16964
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxExemptionService, decorators: [{
|
|
16950
16965
|
type: Injectable,
|
|
16951
16966
|
args: [{
|
|
16952
16967
|
providedIn: 'root'
|
|
@@ -16962,10 +16977,10 @@ class PropertySaleService extends RestService$1 {
|
|
|
16962
16977
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
16963
16978
|
this.roles = [UserRolesEnum$1.PROPERTY_TANK];
|
|
16964
16979
|
}
|
|
16965
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16966
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16980
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16981
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertySaleService, providedIn: 'root' }); }
|
|
16967
16982
|
}
|
|
16968
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16983
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertySaleService, decorators: [{
|
|
16969
16984
|
type: Injectable,
|
|
16970
16985
|
args: [{
|
|
16971
16986
|
providedIn: 'root'
|
|
@@ -17019,10 +17034,10 @@ class PropertyShareService extends RestService$1 {
|
|
|
17019
17034
|
listenSalesChanges() {
|
|
17020
17035
|
this.listenCSE(PropertySale, this.refreshCache, ['post', 'delete']);
|
|
17021
17036
|
}
|
|
17022
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17023
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17037
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyShareService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17038
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyShareService, providedIn: 'root' }); }
|
|
17024
17039
|
}
|
|
17025
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17040
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyShareService, decorators: [{
|
|
17026
17041
|
type: Injectable,
|
|
17027
17042
|
args: [{
|
|
17028
17043
|
providedIn: 'root'
|
|
@@ -17041,10 +17056,10 @@ class PropertyValuationService extends RestService$1 {
|
|
|
17041
17056
|
this.disabledMethods = ['postBatch', 'putBatch'];
|
|
17042
17057
|
this.useBackendError = true;
|
|
17043
17058
|
}
|
|
17044
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17045
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17059
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyValuationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17060
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyValuationService, providedIn: 'root' }); }
|
|
17046
17061
|
}
|
|
17047
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyValuationService, decorators: [{
|
|
17048
17063
|
type: Injectable,
|
|
17049
17064
|
args: [{
|
|
17050
17065
|
providedIn: 'root'
|
|
@@ -17190,10 +17205,10 @@ class PropertyService extends RestService$1 {
|
|
|
17190
17205
|
return of({ growthPercent: 0, lowMarketValue: 0, marketValue: 0, highMarketValue: 0, confidence: PropertyCorelogicStatsConfidenceTypeEnum.LOW });
|
|
17191
17206
|
}));
|
|
17192
17207
|
}
|
|
17193
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17194
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17208
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17209
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
|
|
17195
17210
|
}
|
|
17196
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17211
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyService, decorators: [{
|
|
17197
17212
|
type: Injectable,
|
|
17198
17213
|
args: [{
|
|
17199
17214
|
providedIn: 'root'
|
|
@@ -17250,10 +17265,10 @@ class ServiceNotificationService extends RestService {
|
|
|
17250
17265
|
this.eventDispatcherService.dispatch(new AppEvent(AppEventTypeEnum.NOTIFICATION_ADDED, notification));
|
|
17251
17266
|
});
|
|
17252
17267
|
}
|
|
17253
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17254
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17268
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceNotificationService, deps: [{ token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17269
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' }); }
|
|
17255
17270
|
}
|
|
17256
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17271
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceNotificationService, decorators: [{
|
|
17257
17272
|
type: Injectable,
|
|
17258
17273
|
args: [{
|
|
17259
17274
|
providedIn: 'root'
|
|
@@ -17282,10 +17297,10 @@ class SoleBusinessService extends RestService$1 {
|
|
|
17282
17297
|
this.roles = [UserRolesEnum$1.SOLE_TANK];
|
|
17283
17298
|
this.useBackendError = true;
|
|
17284
17299
|
}
|
|
17285
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17286
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17300
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17301
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessService, providedIn: 'root' }); }
|
|
17287
17302
|
}
|
|
17288
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessService, decorators: [{
|
|
17289
17304
|
type: Injectable,
|
|
17290
17305
|
args: [{
|
|
17291
17306
|
providedIn: 'root'
|
|
@@ -17298,10 +17313,10 @@ class SoleBusinessActivityService extends RestService {
|
|
|
17298
17313
|
this.modelClass = SoleBusinessActivity;
|
|
17299
17314
|
this.url = 'sole-business-activities';
|
|
17300
17315
|
}
|
|
17301
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17302
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17316
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17317
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' }); }
|
|
17303
17318
|
}
|
|
17304
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17319
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
|
|
17305
17320
|
type: Injectable,
|
|
17306
17321
|
args: [{
|
|
17307
17322
|
providedIn: 'root'
|
|
@@ -17330,10 +17345,10 @@ class SoleBusinessLossService extends RestService$1 {
|
|
|
17330
17345
|
this.refreshCache();
|
|
17331
17346
|
});
|
|
17332
17347
|
}
|
|
17333
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17334
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17348
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17349
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' }); }
|
|
17335
17350
|
}
|
|
17336
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17351
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossService, decorators: [{
|
|
17337
17352
|
type: Injectable,
|
|
17338
17353
|
args: [{
|
|
17339
17354
|
providedIn: 'root'
|
|
@@ -17352,10 +17367,10 @@ class SoleBusinessLossOffsetRuleService extends RestService {
|
|
|
17352
17367
|
this.modelClass = SoleBusinessLossOffsetRule;
|
|
17353
17368
|
this.url = 'sole-business-loss-offset-rules';
|
|
17354
17369
|
}
|
|
17355
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17356
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17370
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17371
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' }); }
|
|
17357
17372
|
}
|
|
17358
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
|
|
17359
17374
|
type: Injectable,
|
|
17360
17375
|
args: [{
|
|
17361
17376
|
providedIn: 'root'
|
|
@@ -17371,10 +17386,10 @@ class SoleContactService extends RestService$1 {
|
|
|
17371
17386
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
17372
17387
|
this.useBackendError = true;
|
|
17373
17388
|
}
|
|
17374
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17375
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17389
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17390
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleContactService, providedIn: 'root' }); }
|
|
17376
17391
|
}
|
|
17377
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17392
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleContactService, decorators: [{
|
|
17378
17393
|
type: Injectable,
|
|
17379
17394
|
args: [{
|
|
17380
17395
|
providedIn: 'root'
|
|
@@ -17401,10 +17416,10 @@ class BusinessDepreciationMethodService extends RestService$1 {
|
|
|
17401
17416
|
this.roles = [UserRolesEnum.SOLE_TANK];
|
|
17402
17417
|
this.useBackendError = true;
|
|
17403
17418
|
}
|
|
17404
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17405
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17419
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessDepreciationMethodService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17420
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessDepreciationMethodService, providedIn: 'root' }); }
|
|
17406
17421
|
}
|
|
17407
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17422
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessDepreciationMethodService, decorators: [{
|
|
17408
17423
|
type: Injectable,
|
|
17409
17424
|
args: [{
|
|
17410
17425
|
providedIn: 'root'
|
|
@@ -17426,10 +17441,10 @@ class SoleDetailsService extends RestService$1 {
|
|
|
17426
17441
|
get() {
|
|
17427
17442
|
return super.get().pipe(map(soleDetails => soleDetails.length ? soleDetails : new Collection([plainToClass(SoleDetails, {})])));
|
|
17428
17443
|
}
|
|
17429
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17430
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17444
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17445
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsService, providedIn: 'root' }); }
|
|
17431
17446
|
}
|
|
17432
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsService, decorators: [{
|
|
17433
17448
|
type: Injectable,
|
|
17434
17449
|
args: [{
|
|
17435
17450
|
providedIn: 'root'
|
|
@@ -17471,10 +17486,10 @@ class SoleInvoiceService extends RestService$1 {
|
|
|
17471
17486
|
getInvoices() {
|
|
17472
17487
|
return this.get().pipe(map((invoices) => invoices.filterBy('type', SoleInvoiceTypeEnum.INVOICE)));
|
|
17473
17488
|
}
|
|
17474
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17475
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17489
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17490
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' }); }
|
|
17476
17491
|
}
|
|
17477
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17492
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceService, decorators: [{
|
|
17478
17493
|
type: Injectable,
|
|
17479
17494
|
args: [{
|
|
17480
17495
|
providedIn: 'root'
|
|
@@ -17490,10 +17505,10 @@ class SoleInvoiceTemplateService extends RestService {
|
|
|
17490
17505
|
this.modelClass = SoleInvoiceTemplate;
|
|
17491
17506
|
this.url = 'sole-invoice-templates';
|
|
17492
17507
|
}
|
|
17493
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17494
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17508
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17509
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' }); }
|
|
17495
17510
|
}
|
|
17496
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17511
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
|
|
17497
17512
|
type: Injectable,
|
|
17498
17513
|
args: [{
|
|
17499
17514
|
providedIn: 'root'
|
|
@@ -17517,10 +17532,10 @@ class BasReportService extends RestService$1 {
|
|
|
17517
17532
|
this.roles = [UserRolesEnum.SOLE_TANK];
|
|
17518
17533
|
this.useBackendError = true;
|
|
17519
17534
|
}
|
|
17520
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17521
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17535
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17536
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasReportService, providedIn: 'root' }); }
|
|
17522
17537
|
}
|
|
17523
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17538
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BasReportService, decorators: [{
|
|
17524
17539
|
type: Injectable,
|
|
17525
17540
|
args: [{
|
|
17526
17541
|
providedIn: 'root'
|
|
@@ -17544,10 +17559,10 @@ class ServicePaymentService extends RestService$1 {
|
|
|
17544
17559
|
}
|
|
17545
17560
|
return this.http.get(`${this.environment.apiV2}/service-payments/${payment.id}/invoice-url`);
|
|
17546
17561
|
}
|
|
17547
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17548
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17562
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17563
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentService, providedIn: 'root' }); }
|
|
17549
17564
|
}
|
|
17550
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17565
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentService, decorators: [{
|
|
17551
17566
|
type: Injectable,
|
|
17552
17567
|
args: [{
|
|
17553
17568
|
providedIn: 'root'
|
|
@@ -17579,10 +17594,10 @@ class ServicePaymentMethodService extends RestService$1 {
|
|
|
17579
17594
|
return this.http.put(`${this.apiUrl}/${paymentMethod.id}/default`, {})
|
|
17580
17595
|
.pipe(map((updatedPaymentMethod) => plainToClass(ServicePaymentMethod, updatedPaymentMethod)));
|
|
17581
17596
|
}
|
|
17582
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17583
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17597
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentMethodService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17598
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' }); }
|
|
17584
17599
|
}
|
|
17585
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17600
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
|
|
17586
17601
|
type: Injectable,
|
|
17587
17602
|
args: [{
|
|
17588
17603
|
providedIn: 'root'
|
|
@@ -17603,10 +17618,10 @@ class ServicePriceService extends RestService$1 {
|
|
|
17603
17618
|
this.collectionClass = ServicePriceCollection;
|
|
17604
17619
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
17605
17620
|
}
|
|
17606
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17607
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17621
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17622
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePriceService, providedIn: 'root' }); }
|
|
17608
17623
|
}
|
|
17609
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17624
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServicePriceService, decorators: [{
|
|
17610
17625
|
type: Injectable,
|
|
17611
17626
|
args: [{
|
|
17612
17627
|
providedIn: 'root'
|
|
@@ -17691,10 +17706,10 @@ class SubscriptionService extends RestService$1 {
|
|
|
17691
17706
|
get(path = this.apiUrl) {
|
|
17692
17707
|
return super.get(path).pipe(map(subscriptions => subscriptions.sortBy('isActive', 'ask')));
|
|
17693
17708
|
}
|
|
17694
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17695
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17709
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SubscriptionService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17710
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SubscriptionService, providedIn: 'root' }); }
|
|
17696
17711
|
}
|
|
17697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17712
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SubscriptionService, decorators: [{
|
|
17698
17713
|
type: Injectable,
|
|
17699
17714
|
args: [{
|
|
17700
17715
|
providedIn: 'root'
|
|
@@ -17712,10 +17727,10 @@ class ServiceProductService extends RestService$1 {
|
|
|
17712
17727
|
this.endpointUri = 'service-products';
|
|
17713
17728
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
17714
17729
|
}
|
|
17715
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17716
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17730
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17731
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceProductService, providedIn: 'root' }); }
|
|
17717
17732
|
}
|
|
17718
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17733
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ServiceProductService, decorators: [{
|
|
17719
17734
|
type: Injectable,
|
|
17720
17735
|
args: [{
|
|
17721
17736
|
providedIn: 'root'
|
|
@@ -17851,10 +17866,10 @@ class TaxReviewHistoryService extends RestService {
|
|
|
17851
17866
|
this.updateCache();
|
|
17852
17867
|
});
|
|
17853
17868
|
}
|
|
17854
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17855
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17869
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewHistoryService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17870
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' }); }
|
|
17856
17871
|
}
|
|
17857
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17872
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
|
|
17858
17873
|
type: Injectable,
|
|
17859
17874
|
args: [{
|
|
17860
17875
|
providedIn: 'root'
|
|
@@ -17947,10 +17962,10 @@ class TaxReviewService extends RestService {
|
|
|
17947
17962
|
}
|
|
17948
17963
|
});
|
|
17949
17964
|
}
|
|
17950
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17951
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17965
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17966
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewService, providedIn: 'root' }); }
|
|
17952
17967
|
}
|
|
17953
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17968
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReviewService, decorators: [{
|
|
17954
17969
|
type: Injectable,
|
|
17955
17970
|
args: [{
|
|
17956
17971
|
providedIn: 'root'
|
|
@@ -18281,10 +18296,10 @@ class TaxSummaryService {
|
|
|
18281
18296
|
this.getForecast().subscribe();
|
|
18282
18297
|
});
|
|
18283
18298
|
}
|
|
18284
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18285
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18299
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxSummaryService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18300
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxSummaryService, providedIn: 'root' }); }
|
|
18286
18301
|
}
|
|
18287
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18302
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxSummaryService, decorators: [{
|
|
18288
18303
|
type: Injectable,
|
|
18289
18304
|
args: [{
|
|
18290
18305
|
providedIn: 'root'
|
|
@@ -18305,10 +18320,10 @@ class AllocationRuleService extends RestService$1 {
|
|
|
18305
18320
|
getCustomHttpErrorMessages() {
|
|
18306
18321
|
return { 422: 'You can only have 10 conditions in a rule' };
|
|
18307
18322
|
}
|
|
18308
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18309
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18323
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18324
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AllocationRuleService, providedIn: 'root' }); }
|
|
18310
18325
|
}
|
|
18311
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18326
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AllocationRuleService, decorators: [{
|
|
18312
18327
|
type: Injectable,
|
|
18313
18328
|
args: [{
|
|
18314
18329
|
providedIn: 'root'
|
|
@@ -18413,10 +18428,10 @@ class TransactionAllocationService extends RestService {
|
|
|
18413
18428
|
}
|
|
18414
18429
|
});
|
|
18415
18430
|
}
|
|
18416
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18417
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18431
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionAllocationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18432
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' }); }
|
|
18418
18433
|
}
|
|
18419
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18434
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionAllocationService, decorators: [{
|
|
18420
18435
|
type: Injectable,
|
|
18421
18436
|
args: [{
|
|
18422
18437
|
providedIn: 'root'
|
|
@@ -18675,10 +18690,10 @@ class TransactionService extends RestService {
|
|
|
18675
18690
|
}
|
|
18676
18691
|
});
|
|
18677
18692
|
}
|
|
18678
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18679
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18693
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18694
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionService, providedIn: 'root' }); }
|
|
18680
18695
|
}
|
|
18681
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18696
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TransactionService, decorators: [{
|
|
18682
18697
|
type: Injectable,
|
|
18683
18698
|
args: [{
|
|
18684
18699
|
providedIn: 'root'
|
|
@@ -18704,10 +18719,10 @@ class PriorTransactionService extends RestService$1 {
|
|
|
18704
18719
|
const financialYear = new FinancialYear(new FinancialYear().year - 1);
|
|
18705
18720
|
return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(transactions => transactions.filterByFinancialYear('date', null, financialYear)));
|
|
18706
18721
|
}
|
|
18707
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18708
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18722
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18723
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorTransactionService, providedIn: 'root' }); }
|
|
18709
18724
|
}
|
|
18710
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18725
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PriorTransactionService, decorators: [{
|
|
18711
18726
|
type: Injectable,
|
|
18712
18727
|
args: [{
|
|
18713
18728
|
providedIn: 'root'
|
|
@@ -18729,10 +18744,10 @@ class InvoiceTransactionsService extends RestService$1 {
|
|
|
18729
18744
|
this.endpointUri = 'invoices/transactions';
|
|
18730
18745
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
18731
18746
|
}
|
|
18732
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18733
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18747
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InvoiceTransactionsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18748
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InvoiceTransactionsService, providedIn: 'root' }); }
|
|
18734
18749
|
}
|
|
18735
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18750
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InvoiceTransactionsService, decorators: [{
|
|
18736
18751
|
type: Injectable,
|
|
18737
18752
|
args: [{
|
|
18738
18753
|
providedIn: 'root'
|
|
@@ -18756,10 +18771,10 @@ class YoutubeService {
|
|
|
18756
18771
|
title: item.snippet.title
|
|
18757
18772
|
}))));
|
|
18758
18773
|
}
|
|
18759
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18760
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18774
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: YoutubeService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18775
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: YoutubeService, providedIn: 'root' }); }
|
|
18761
18776
|
}
|
|
18762
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18777
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: YoutubeService, decorators: [{
|
|
18763
18778
|
type: Injectable,
|
|
18764
18779
|
args: [{
|
|
18765
18780
|
providedIn: 'root'
|
|
@@ -18779,10 +18794,10 @@ class VehicleService extends RestService$1 {
|
|
|
18779
18794
|
this.collectionClass = (Collection);
|
|
18780
18795
|
this.modelClass = Vehicle;
|
|
18781
18796
|
}
|
|
18782
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18783
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18797
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18798
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleService, providedIn: 'root' }); }
|
|
18784
18799
|
}
|
|
18785
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleService, decorators: [{
|
|
18786
18801
|
type: Injectable,
|
|
18787
18802
|
args: [{
|
|
18788
18803
|
providedIn: 'root'
|
|
@@ -18805,10 +18820,10 @@ class VehicleClaimService extends RestService$1 {
|
|
|
18805
18820
|
this.collectionClass = VehicleClaimCollection;
|
|
18806
18821
|
this.roles = [UserRolesEnum$1.WORK_TANK, UserRolesEnum$1.SOLE_TANK];
|
|
18807
18822
|
}
|
|
18808
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18809
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18823
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18824
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleClaimService, providedIn: 'root' }); }
|
|
18810
18825
|
}
|
|
18811
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18826
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleClaimService, decorators: [{
|
|
18812
18827
|
type: Injectable,
|
|
18813
18828
|
args: [{
|
|
18814
18829
|
providedIn: 'root'
|
|
@@ -18826,10 +18841,10 @@ class VehicleLogbookService extends RestService$1 {
|
|
|
18826
18841
|
this.collectionClass = VehicleLogbookCollection;
|
|
18827
18842
|
this.modelClass = VehicleLogbook;
|
|
18828
18843
|
}
|
|
18829
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18830
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18844
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18845
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' }); }
|
|
18831
18846
|
}
|
|
18832
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18847
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: VehicleLogbookService, decorators: [{
|
|
18833
18848
|
type: Injectable,
|
|
18834
18849
|
args: [{
|
|
18835
18850
|
providedIn: 'root'
|
|
@@ -18852,10 +18867,10 @@ class AnnualClientDetailsService extends RestService$1 {
|
|
|
18852
18867
|
this.endpointUri = 'annual-client-details';
|
|
18853
18868
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
|
|
18854
18869
|
}
|
|
18855
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18856
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18870
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AnnualClientDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18871
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AnnualClientDetailsService, providedIn: 'root' }); }
|
|
18857
18872
|
}
|
|
18858
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18873
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
|
|
18859
18874
|
type: Injectable,
|
|
18860
18875
|
args: [{
|
|
18861
18876
|
providedIn: 'root'
|
|
@@ -18885,10 +18900,10 @@ class OccupationService {
|
|
|
18885
18900
|
}
|
|
18886
18901
|
return this.occupationsSubject.asObservable();
|
|
18887
18902
|
}
|
|
18888
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18889
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18903
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: OccupationService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18904
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: OccupationService, providedIn: 'root' }); }
|
|
18890
18905
|
}
|
|
18891
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18906
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: OccupationService, decorators: [{
|
|
18892
18907
|
type: Injectable,
|
|
18893
18908
|
args: [{
|
|
18894
18909
|
providedIn: 'root'
|
|
@@ -18911,10 +18926,10 @@ class ClientCouponService extends RestService$1 {
|
|
|
18911
18926
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
18912
18927
|
this.skipErrorCodes = [404];
|
|
18913
18928
|
}
|
|
18914
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18915
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18929
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientCouponService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18930
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientCouponService, providedIn: 'root' }); }
|
|
18916
18931
|
}
|
|
18917
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18932
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientCouponService, decorators: [{
|
|
18918
18933
|
type: Injectable,
|
|
18919
18934
|
args: [{
|
|
18920
18935
|
providedIn: 'root'
|
|
@@ -18929,10 +18944,10 @@ class CapitalLossService extends RestService$1 {
|
|
|
18929
18944
|
this.collectionClass = (Collection);
|
|
18930
18945
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
18931
18946
|
}
|
|
18932
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18933
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
18947
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CapitalLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
18948
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CapitalLossService, providedIn: 'root' }); }
|
|
18934
18949
|
}
|
|
18935
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
18950
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CapitalLossService, decorators: [{
|
|
18936
18951
|
type: Injectable,
|
|
18937
18952
|
args: [{
|
|
18938
18953
|
providedIn: 'root'
|
|
@@ -18995,10 +19010,10 @@ class UserEventSettingService extends RestService$1 {
|
|
|
18995
19010
|
this.endpointUri = 'user-event-settings';
|
|
18996
19011
|
this.disabledMethods = ['postBatch', 'putBatch', 'delete', 'deleteBatch'];
|
|
18997
19012
|
}
|
|
18998
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18999
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19013
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19014
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventSettingService, providedIn: 'root' }); }
|
|
19000
19015
|
}
|
|
19001
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19016
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventSettingService, decorators: [{
|
|
19002
19017
|
type: Injectable,
|
|
19003
19018
|
args: [{
|
|
19004
19019
|
providedIn: 'root'
|
|
@@ -19013,10 +19028,10 @@ class UserEventTypeService extends RestService$1 {
|
|
|
19013
19028
|
this.endpointUri = 'user-event-types';
|
|
19014
19029
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
19015
19030
|
}
|
|
19016
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19017
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19031
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19032
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventTypeService, providedIn: 'root' }); }
|
|
19018
19033
|
}
|
|
19019
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19034
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserEventTypeService, decorators: [{
|
|
19020
19035
|
type: Injectable,
|
|
19021
19036
|
args: [{
|
|
19022
19037
|
providedIn: 'root'
|
|
@@ -19044,10 +19059,10 @@ class UsersInviteService extends RestService {
|
|
|
19044
19059
|
this.modelClass = RegistrationInvite;
|
|
19045
19060
|
this.url = 'users/invite';
|
|
19046
19061
|
}
|
|
19047
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19048
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19062
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19063
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UsersInviteService, providedIn: 'root' }); }
|
|
19049
19064
|
}
|
|
19050
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19065
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UsersInviteService, decorators: [{
|
|
19051
19066
|
type: Injectable,
|
|
19052
19067
|
args: [{
|
|
19053
19068
|
providedIn: 'root'
|
|
@@ -19155,10 +19170,10 @@ class UserService extends RestService$1 {
|
|
|
19155
19170
|
this.setCache([user], true);
|
|
19156
19171
|
}, ['post', 'put']);
|
|
19157
19172
|
}
|
|
19158
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19159
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19173
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19174
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserService, providedIn: 'root' }); }
|
|
19160
19175
|
}
|
|
19161
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19176
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserService, decorators: [{
|
|
19162
19177
|
type: Injectable,
|
|
19163
19178
|
args: [{
|
|
19164
19179
|
providedIn: 'root'
|
|
@@ -19179,10 +19194,10 @@ class FinancialYearService {
|
|
|
19179
19194
|
window.location.reload();
|
|
19180
19195
|
}));
|
|
19181
19196
|
}
|
|
19182
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19183
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19197
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19198
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearService, providedIn: 'root' }); }
|
|
19184
19199
|
}
|
|
19185
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19200
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearService, decorators: [{
|
|
19186
19201
|
type: Injectable,
|
|
19187
19202
|
args: [{
|
|
19188
19203
|
providedIn: 'root'
|
|
@@ -19226,10 +19241,10 @@ class MfaDetailsService extends RestService$1 {
|
|
|
19226
19241
|
return mfaDetails;
|
|
19227
19242
|
}));
|
|
19228
19243
|
}
|
|
19229
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19230
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19244
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MfaDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19245
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MfaDetailsService, providedIn: 'root' }); }
|
|
19231
19246
|
}
|
|
19232
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19247
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: MfaDetailsService, decorators: [{
|
|
19233
19248
|
type: Injectable,
|
|
19234
19249
|
args: [{
|
|
19235
19250
|
providedIn: 'root'
|
|
@@ -19266,10 +19281,10 @@ class HoldingTradeService extends RestService$1 {
|
|
|
19266
19281
|
}
|
|
19267
19282
|
});
|
|
19268
19283
|
}
|
|
19269
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19270
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19284
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19285
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeService, providedIn: 'root' }); }
|
|
19271
19286
|
}
|
|
19272
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19287
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeService, decorators: [{
|
|
19273
19288
|
type: Injectable,
|
|
19274
19289
|
args: [{
|
|
19275
19290
|
providedIn: 'root'
|
|
@@ -19309,10 +19324,10 @@ class HoldingTypeService extends RestService$1 {
|
|
|
19309
19324
|
}
|
|
19310
19325
|
});
|
|
19311
19326
|
}
|
|
19312
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19313
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19327
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19328
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeService, providedIn: 'root' }); }
|
|
19314
19329
|
}
|
|
19315
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19330
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeService, decorators: [{
|
|
19316
19331
|
type: Injectable,
|
|
19317
19332
|
args: [{
|
|
19318
19333
|
providedIn: 'root'
|
|
@@ -19331,10 +19346,10 @@ class HoldingSaleService extends RestService$1 {
|
|
|
19331
19346
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
19332
19347
|
this.roles = [UserRolesEnum$1.HOLDING_TANK];
|
|
19333
19348
|
}
|
|
19334
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19335
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19349
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19350
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingSaleService, providedIn: 'root' }); }
|
|
19336
19351
|
}
|
|
19337
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19352
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingSaleService, decorators: [{
|
|
19338
19353
|
type: Injectable,
|
|
19339
19354
|
args: [{
|
|
19340
19355
|
providedIn: 'root'
|
|
@@ -19367,10 +19382,10 @@ class HoldingTradeImportService extends RestService$1 {
|
|
|
19367
19382
|
formData.append('isTaxFree', (isTaxFree ? 1 : 0).toString());
|
|
19368
19383
|
return this.importFile(formData).pipe(tap$1(() => this.toastService.success(HoldingTradeImportMessagesEnum.CREATED)));
|
|
19369
19384
|
}
|
|
19370
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19371
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19385
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeImportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19386
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeImportService, providedIn: 'root' }); }
|
|
19372
19387
|
}
|
|
19373
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTradeImportService, decorators: [{
|
|
19374
19389
|
type: Injectable,
|
|
19375
19390
|
args: [{
|
|
19376
19391
|
providedIn: 'root'
|
|
@@ -19464,10 +19479,10 @@ class HoldingTypeExchangeService extends DataService {
|
|
|
19464
19479
|
this.collectionClass = Collection;
|
|
19465
19480
|
this.setCache(HoldingTypeExchanges);
|
|
19466
19481
|
}
|
|
19467
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19468
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19482
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeExchangeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19483
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeExchangeService, providedIn: 'root' }); }
|
|
19469
19484
|
}
|
|
19470
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19485
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTypeExchangeService, decorators: [{
|
|
19471
19486
|
type: Injectable,
|
|
19472
19487
|
args: [{
|
|
19473
19488
|
providedIn: 'root'
|
|
@@ -19509,10 +19524,10 @@ class HoldingTaxStatementService extends RestService$1 {
|
|
|
19509
19524
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
19510
19525
|
this.roles = [UserRolesEnum.HOLDING_TANK];
|
|
19511
19526
|
}
|
|
19512
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19513
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19527
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19528
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementService, providedIn: 'root' }); }
|
|
19514
19529
|
}
|
|
19515
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19530
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementService, decorators: [{
|
|
19516
19531
|
type: Injectable,
|
|
19517
19532
|
args: [{
|
|
19518
19533
|
providedIn: 'root'
|
|
@@ -19536,10 +19551,10 @@ class HoldingTaxStatementPayerService extends RestService$1 {
|
|
|
19536
19551
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
19537
19552
|
this.roles = [UserRolesEnum.HOLDING_TANK];
|
|
19538
19553
|
}
|
|
19539
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19540
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19554
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementPayerService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19555
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementPayerService, providedIn: 'root' }); }
|
|
19541
19556
|
}
|
|
19542
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19557
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingTaxStatementPayerService, decorators: [{
|
|
19543
19558
|
type: Injectable,
|
|
19544
19559
|
args: [{
|
|
19545
19560
|
providedIn: 'root'
|
|
@@ -19556,10 +19571,10 @@ class HoldingCostAdjustmentService extends RestService$1 {
|
|
|
19556
19571
|
this.roles = [UserRolesEnum.HOLDING_TANK];
|
|
19557
19572
|
this.useBackendError = true;
|
|
19558
19573
|
}
|
|
19559
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19560
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19574
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingCostAdjustmentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19575
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingCostAdjustmentService, providedIn: 'root' }); }
|
|
19561
19576
|
}
|
|
19562
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HoldingCostAdjustmentService, decorators: [{
|
|
19563
19578
|
type: Injectable,
|
|
19564
19579
|
args: [{
|
|
19565
19580
|
providedIn: 'root'
|
|
@@ -19583,10 +19598,10 @@ class HomeOfficeClaimService extends RestService$1 {
|
|
|
19583
19598
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
19584
19599
|
this.roles = [UserRolesEnum$1.WORK_TANK, UserRolesEnum$1.SOLE_TANK];
|
|
19585
19600
|
}
|
|
19586
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19587
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19601
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19602
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeClaimService, providedIn: 'root' }); }
|
|
19588
19603
|
}
|
|
19589
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19604
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeClaimService, decorators: [{
|
|
19590
19605
|
type: Injectable,
|
|
19591
19606
|
args: [{
|
|
19592
19607
|
providedIn: 'root'
|
|
@@ -19614,10 +19629,10 @@ class HomeOfficeLogService extends RestService$1 {
|
|
|
19614
19629
|
listenEvents() {
|
|
19615
19630
|
this.listenCSE(HomeOfficeClaim, this.refreshCache, ['post']);
|
|
19616
19631
|
}
|
|
19617
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19618
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19632
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeLogService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19633
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeLogService, providedIn: 'root' }); }
|
|
19619
19634
|
}
|
|
19620
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19635
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HomeOfficeLogService, decorators: [{
|
|
19621
19636
|
type: Injectable,
|
|
19622
19637
|
args: [{
|
|
19623
19638
|
providedIn: 'root'
|
|
@@ -19657,10 +19672,10 @@ class AussieService extends RestService$1 {
|
|
|
19657
19672
|
postAppointment() {
|
|
19658
19673
|
return this.http.delete(`${this.environment.apiV2}/aussie/appointments`);
|
|
19659
19674
|
}
|
|
19660
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19661
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19675
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19676
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieService, providedIn: 'root' }); }
|
|
19662
19677
|
}
|
|
19663
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19678
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieService, decorators: [{
|
|
19664
19679
|
type: Injectable,
|
|
19665
19680
|
args: [{
|
|
19666
19681
|
providedIn: 'root'
|
|
@@ -19684,10 +19699,10 @@ class SharesightDetailsService extends RestService$1 {
|
|
|
19684
19699
|
reconnect(sharesightDetails) {
|
|
19685
19700
|
return this.put(sharesightDetails, `${this.apiUrl}/${sharesightDetails.id}/reconnect`);
|
|
19686
19701
|
}
|
|
19687
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19688
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19702
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19703
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightDetailsService, providedIn: 'root' }); }
|
|
19689
19704
|
}
|
|
19690
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19705
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightDetailsService, decorators: [{
|
|
19691
19706
|
type: Injectable,
|
|
19692
19707
|
args: [{
|
|
19693
19708
|
providedIn: 'root'
|
|
@@ -19705,10 +19720,10 @@ class SharesightPortfolioService extends RestService$1 {
|
|
|
19705
19720
|
getExternal() {
|
|
19706
19721
|
return this.fetch(`${this.apiUrl}/external`, false);
|
|
19707
19722
|
}
|
|
19708
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19709
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19723
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightPortfolioService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19724
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightPortfolioService, providedIn: 'root' }); }
|
|
19710
19725
|
}
|
|
19711
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19726
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SharesightPortfolioService, decorators: [{
|
|
19712
19727
|
type: Injectable,
|
|
19713
19728
|
args: [{
|
|
19714
19729
|
providedIn: 'root'
|
|
@@ -19790,10 +19805,10 @@ class IncomeSourceTypeService extends DataService {
|
|
|
19790
19805
|
this.collectionClass = Collection;
|
|
19791
19806
|
this.setCache(IncomeSourceTypes);
|
|
19792
19807
|
}
|
|
19793
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19794
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19808
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceTypeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19809
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceTypeService, providedIn: 'root' }); }
|
|
19795
19810
|
}
|
|
19796
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19811
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IncomeSourceTypeService, decorators: [{
|
|
19797
19812
|
type: Injectable,
|
|
19798
19813
|
args: [{
|
|
19799
19814
|
providedIn: 'root'
|
|
@@ -19807,10 +19822,10 @@ class ChartAccountsValueService extends DataService {
|
|
|
19807
19822
|
this.collectionClass = ChartAccountsValueCollection;
|
|
19808
19823
|
this.setCache(ChartAccountsValues);
|
|
19809
19824
|
}
|
|
19810
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19811
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19825
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsValueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19826
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsValueService, providedIn: 'root' }); }
|
|
19812
19827
|
}
|
|
19813
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19828
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ChartAccountsValueService, decorators: [{
|
|
19814
19829
|
type: Injectable,
|
|
19815
19830
|
args: [{
|
|
19816
19831
|
providedIn: 'root'
|
|
@@ -21783,10 +21798,10 @@ class TaxReturnItemService extends DataService {
|
|
|
21783
21798
|
this.collectionClass = Collection;
|
|
21784
21799
|
this.setCache(TaxReturnItems);
|
|
21785
21800
|
}
|
|
21786
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
21787
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
21801
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReturnItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
21802
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReturnItemService, providedIn: 'root' }); }
|
|
21788
21803
|
}
|
|
21789
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
21804
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: TaxReturnItemService, decorators: [{
|
|
21790
21805
|
type: Injectable,
|
|
21791
21806
|
args: [{
|
|
21792
21807
|
providedIn: 'root'
|
|
@@ -21967,10 +21982,10 @@ class CurrencyService extends DataService {
|
|
|
21967
21982
|
this.collectionClass = Collection;
|
|
21968
21983
|
this.setCache(Currencies);
|
|
21969
21984
|
}
|
|
21970
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
21971
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
21985
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrencyService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
21986
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrencyService, providedIn: 'root' }); }
|
|
21972
21987
|
}
|
|
21973
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
21988
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrencyService, decorators: [{
|
|
21974
21989
|
type: Injectable,
|
|
21975
21990
|
args: [{
|
|
21976
21991
|
providedIn: 'root'
|
|
@@ -23481,10 +23496,10 @@ class CountryService extends DataService {
|
|
|
23481
23496
|
this.collectionClass = Collection;
|
|
23482
23497
|
this.setCache(countries);
|
|
23483
23498
|
}
|
|
23484
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23485
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23499
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CountryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23500
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CountryService, providedIn: 'root' }); }
|
|
23486
23501
|
}
|
|
23487
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CountryService, decorators: [{
|
|
23488
23503
|
type: Injectable,
|
|
23489
23504
|
args: [{
|
|
23490
23505
|
providedIn: 'root'
|
|
@@ -23499,10 +23514,10 @@ class SetupItemService extends RestService$1 {
|
|
|
23499
23514
|
this.collectionClass = AccountSetupItemCollection;
|
|
23500
23515
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
23501
23516
|
}
|
|
23502
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23503
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23517
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SetupItemService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23518
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SetupItemService, providedIn: 'root' }); }
|
|
23504
23519
|
}
|
|
23505
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23520
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SetupItemService, decorators: [{
|
|
23506
23521
|
type: Injectable,
|
|
23507
23522
|
args: [{
|
|
23508
23523
|
providedIn: 'root'
|
|
@@ -23692,10 +23707,10 @@ class AccountSetupService {
|
|
|
23692
23707
|
getSharesightDetails(importEnabled) {
|
|
23693
23708
|
return this.sharesightDetailsService.getArray().pipe(map(details => details.filter(detail => importEnabled ? detail.importEnabled : detail.exportEnabled)));
|
|
23694
23709
|
}
|
|
23695
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23696
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23710
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AccountSetupService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23711
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AccountSetupService, providedIn: 'root' }); }
|
|
23697
23712
|
}
|
|
23698
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23713
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AccountSetupService, decorators: [{
|
|
23699
23714
|
type: Injectable,
|
|
23700
23715
|
args: [{
|
|
23701
23716
|
providedIn: 'root'
|
|
@@ -23710,10 +23725,10 @@ class AdblockDetectorService {
|
|
|
23710
23725
|
constructor() {
|
|
23711
23726
|
checkAdBlock().then((isDetected) => this.isDetected = isDetected);
|
|
23712
23727
|
}
|
|
23713
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23714
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23728
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdblockDetectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23729
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdblockDetectorService, providedIn: 'root' }); }
|
|
23715
23730
|
}
|
|
23716
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23731
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdblockDetectorService, decorators: [{
|
|
23717
23732
|
type: Injectable,
|
|
23718
23733
|
args: [{
|
|
23719
23734
|
providedIn: 'root'
|
|
@@ -23756,10 +23771,10 @@ class UserSwitcherService {
|
|
|
23756
23771
|
window.location.replace('/client/dashboard');
|
|
23757
23772
|
});
|
|
23758
23773
|
}
|
|
23759
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23760
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23774
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23775
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherService, providedIn: 'root' }); }
|
|
23761
23776
|
}
|
|
23762
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23777
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherService, decorators: [{
|
|
23763
23778
|
type: Injectable,
|
|
23764
23779
|
args: [{
|
|
23765
23780
|
providedIn: 'root'
|
|
@@ -23803,10 +23818,10 @@ class AssetsService {
|
|
|
23803
23818
|
delete(entityId, asset) {
|
|
23804
23819
|
return this.http.delete(`${this.environment.apiV2}/${asset.entityType}/${entityId}/${asset.type}/${asset.id}`);
|
|
23805
23820
|
}
|
|
23806
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23807
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23821
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AssetsService, deps: [{ token: i1.HttpClient }, { token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23822
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AssetsService, providedIn: 'root' }); }
|
|
23808
23823
|
}
|
|
23809
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23824
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AssetsService, decorators: [{
|
|
23810
23825
|
type: Injectable,
|
|
23811
23826
|
args: [{
|
|
23812
23827
|
providedIn: 'root'
|
|
@@ -23837,10 +23852,10 @@ class BankAccountCalculationService {
|
|
|
23837
23852
|
});
|
|
23838
23853
|
return total;
|
|
23839
23854
|
}
|
|
23840
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23841
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23855
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23856
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' }); }
|
|
23842
23857
|
}
|
|
23843
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23858
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BankAccountCalculationService, decorators: [{
|
|
23844
23859
|
type: Injectable,
|
|
23845
23860
|
args: [{
|
|
23846
23861
|
providedIn: 'root'
|
|
@@ -23871,16 +23886,17 @@ class CorelogicService {
|
|
|
23871
23886
|
return this.accessTokenSubject.asObservable();
|
|
23872
23887
|
}
|
|
23873
23888
|
getSuggestions(query, country = 'au') {
|
|
23874
|
-
|
|
23889
|
+
const url = country === 'nz' ? this.environment.coreLogicUrlNz : this.environment.coreLogicUrlAu;
|
|
23890
|
+
return this.http.get(`${url}/v2/suggest.json?q=${query}`)
|
|
23875
23891
|
.pipe(map((response) => response.suggestions.map((item) => plainToClass(AddressSuggestion, item))), catchError((error) => {
|
|
23876
23892
|
this.toastService.error(CorelogicMessagesEnum.SERVICE_UNAVAILABLE);
|
|
23877
23893
|
return throwError(() => error);
|
|
23878
23894
|
}));
|
|
23879
23895
|
}
|
|
23880
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23881
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23896
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23897
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicService, providedIn: 'root' }); }
|
|
23882
23898
|
}
|
|
23883
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23899
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicService, decorators: [{
|
|
23884
23900
|
type: Injectable,
|
|
23885
23901
|
args: [{
|
|
23886
23902
|
providedIn: 'root'
|
|
@@ -23898,10 +23914,10 @@ class GooglePlaceService {
|
|
|
23898
23914
|
getSuggestions(search, country = 'au') {
|
|
23899
23915
|
return this.http.get(`${this.environment.apiV2}/google-place/suggestions`, { params: { search, country } }).pipe(map((response) => response.map((item) => plainToClass(AddressSuggestion, item))));
|
|
23900
23916
|
}
|
|
23901
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23902
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23917
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GooglePlaceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23918
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GooglePlaceService, providedIn: 'root' }); }
|
|
23903
23919
|
}
|
|
23904
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: GooglePlaceService, decorators: [{
|
|
23905
23921
|
type: Injectable,
|
|
23906
23922
|
args: [{
|
|
23907
23923
|
providedIn: 'root'
|
|
@@ -23931,10 +23947,10 @@ class ExportFormatterService {
|
|
|
23931
23947
|
}
|
|
23932
23948
|
}));
|
|
23933
23949
|
}
|
|
23934
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23935
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23950
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExportFormatterService, deps: [{ token: i1$1.CurrencyPipe }, { token: i1$1.PercentPipe }, { token: i1$1.DatePipe }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23951
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExportFormatterService, providedIn: 'root' }); }
|
|
23936
23952
|
}
|
|
23937
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23953
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ExportFormatterService, decorators: [{
|
|
23938
23954
|
type: Injectable,
|
|
23939
23955
|
args: [{
|
|
23940
23956
|
providedIn: 'root'
|
|
@@ -23954,10 +23970,10 @@ class HeaderTitleService {
|
|
|
23954
23970
|
return route;
|
|
23955
23971
|
}), filter((route) => route.outlet === 'primary'), mergeMap((route) => route.data));
|
|
23956
23972
|
}
|
|
23957
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23958
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
23973
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HeaderTitleService, deps: [{ token: i4.Router }, { token: i4.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23974
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HeaderTitleService, providedIn: 'root' }); }
|
|
23959
23975
|
}
|
|
23960
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
23976
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: HeaderTitleService, decorators: [{
|
|
23961
23977
|
type: Injectable,
|
|
23962
23978
|
args: [{
|
|
23963
23979
|
providedIn: 'root'
|
|
@@ -23990,10 +24006,10 @@ class IntercomService {
|
|
|
23990
24006
|
const connectionCredentials = this.initUser(user);
|
|
23991
24007
|
window.Intercom('boot', connectionCredentials);
|
|
23992
24008
|
}
|
|
23993
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23994
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24009
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24010
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IntercomService, providedIn: 'root' }); }
|
|
23995
24011
|
}
|
|
23996
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24012
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: IntercomService, decorators: [{
|
|
23997
24013
|
type: Injectable,
|
|
23998
24014
|
args: [{
|
|
23999
24015
|
providedIn: 'root'
|
|
@@ -24109,10 +24125,10 @@ class PdfFromDomElementService {
|
|
|
24109
24125
|
idoc.head.appendChild(clone);
|
|
24110
24126
|
});
|
|
24111
24127
|
}
|
|
24112
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24113
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24128
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24129
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' }); }
|
|
24114
24130
|
}
|
|
24115
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDomElementService, decorators: [{
|
|
24116
24132
|
type: Injectable,
|
|
24117
24133
|
args: [{
|
|
24118
24134
|
providedIn: 'root'
|
|
@@ -24155,15 +24171,6 @@ const FILE_SETTINGS = {
|
|
|
24155
24171
|
}
|
|
24156
24172
|
};
|
|
24157
24173
|
|
|
24158
|
-
/**
|
|
24159
|
-
* autoTable renders cells from text only and ignores CSS, so the styles a cell should keep in the PDF
|
|
24160
|
-
* are taken from its classes. To support one more style just add an entry here.
|
|
24161
|
-
*/
|
|
24162
|
-
const PDF_CELL_STYLES = {
|
|
24163
|
-
'col-right': { halign: 'right' },
|
|
24164
|
-
'text-right': { halign: 'right' },
|
|
24165
|
-
};
|
|
24166
|
-
|
|
24167
24174
|
/**
|
|
24168
24175
|
* Service with base functionality to export tables (HTML table, data-table, e.t.c.) as PDF file
|
|
24169
24176
|
* The file is generated using the jsPDF library to set custom table styles
|
|
@@ -24188,7 +24195,11 @@ class PdfFromTableService {
|
|
|
24188
24195
|
data.cell.text = data.cell.text.map((line) => line.trim());
|
|
24189
24196
|
// autoTable ignores CSS, so cell styles are taken from its classes
|
|
24190
24197
|
if (data.cell.raw instanceof HTMLElement) {
|
|
24191
|
-
data.cell.raw.classList.forEach((className) =>
|
|
24198
|
+
data.cell.raw.classList.forEach((className) => {
|
|
24199
|
+
if (EXPORT_CELL_STYLES[className]) {
|
|
24200
|
+
Object.assign(data.cell.styles, EXPORT_CELL_STYLES[className].pdf);
|
|
24201
|
+
}
|
|
24202
|
+
});
|
|
24192
24203
|
}
|
|
24193
24204
|
// Align last column content to right
|
|
24194
24205
|
if (data.table.columns.length > 1 && (data.column.index === data.table.columns.length - 1)) {
|
|
@@ -24243,10 +24254,10 @@ class PdfFromTableService {
|
|
|
24243
24254
|
startY: lastTableCoords + FILE_SETTINGS.titleCoords.top / 2,
|
|
24244
24255
|
});
|
|
24245
24256
|
}
|
|
24246
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24247
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24257
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24258
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromTableService, providedIn: 'root' }); }
|
|
24248
24259
|
}
|
|
24249
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24260
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromTableService, decorators: [{
|
|
24250
24261
|
type: Injectable,
|
|
24251
24262
|
args: [{
|
|
24252
24263
|
providedIn: 'root'
|
|
@@ -24288,10 +24299,10 @@ class PdfFromDataTableService extends PdfFromTableService {
|
|
|
24288
24299
|
});
|
|
24289
24300
|
return pdf;
|
|
24290
24301
|
}
|
|
24291
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24292
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24302
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24303
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' }); }
|
|
24293
24304
|
}
|
|
24294
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24305
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromDataTableService, decorators: [{
|
|
24295
24306
|
type: Injectable,
|
|
24296
24307
|
args: [{
|
|
24297
24308
|
providedIn: 'root'
|
|
@@ -24342,10 +24353,10 @@ class PdfFromHtmlTableService extends PdfFromTableService {
|
|
|
24342
24353
|
Array.from(caption.children).map((node) => node.textContent).join('\n') :
|
|
24343
24354
|
caption.innerText;
|
|
24344
24355
|
}
|
|
24345
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24346
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24356
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24357
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' }); }
|
|
24347
24358
|
}
|
|
24348
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24359
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
|
|
24349
24360
|
type: Injectable,
|
|
24350
24361
|
args: [{
|
|
24351
24362
|
providedIn: 'root'
|
|
@@ -24369,10 +24380,10 @@ class PreloaderService {
|
|
|
24369
24380
|
activePreloaders = activePreloaders.filter((preloader) => preloader !== endpoint);
|
|
24370
24381
|
this.activePreloaders.next(activePreloaders);
|
|
24371
24382
|
}
|
|
24372
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24373
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24383
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24384
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderService, providedIn: 'root' }); }
|
|
24374
24385
|
}
|
|
24375
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24386
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderService, decorators: [{
|
|
24376
24387
|
type: Injectable,
|
|
24377
24388
|
args: [{
|
|
24378
24389
|
providedIn: 'root'
|
|
@@ -24398,10 +24409,10 @@ class EquityPositionChartService {
|
|
|
24398
24409
|
}))
|
|
24399
24410
|
}))));
|
|
24400
24411
|
}
|
|
24401
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24402
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24412
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EquityPositionChartService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24413
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' }); }
|
|
24403
24414
|
}
|
|
24404
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24415
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EquityPositionChartService, decorators: [{
|
|
24405
24416
|
type: Injectable,
|
|
24406
24417
|
args: [{
|
|
24407
24418
|
providedIn: 'root'
|
|
@@ -24564,10 +24575,10 @@ class PropertyCalculationService {
|
|
|
24564
24575
|
return new Badge('Monitoring performance');
|
|
24565
24576
|
}
|
|
24566
24577
|
}
|
|
24567
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24568
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24578
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24579
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' }); }
|
|
24569
24580
|
}
|
|
24570
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyCalculationService, decorators: [{
|
|
24571
24582
|
type: Injectable,
|
|
24572
24583
|
args: [{
|
|
24573
24584
|
providedIn: 'root'
|
|
@@ -24625,10 +24636,10 @@ class PropertyTransactionReportService {
|
|
|
24625
24636
|
getDepreciations() {
|
|
24626
24637
|
return this.depreciationService.get().pipe(map((depreciations) => depreciations.getByChartAccountsCategories(CHART_ACCOUNTS_CATEGORIES.property)));
|
|
24627
24638
|
}
|
|
24628
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24629
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24639
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyTransactionReportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24640
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' }); }
|
|
24630
24641
|
}
|
|
24631
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24642
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
|
|
24632
24643
|
type: Injectable,
|
|
24633
24644
|
args: [{
|
|
24634
24645
|
providedIn: 'root'
|
|
@@ -24648,10 +24659,10 @@ class CurrentFirmBranchService {
|
|
|
24648
24659
|
set(firmBranches) {
|
|
24649
24660
|
this.firmBranchIds$.next(firmBranches.map(branch => branch.id));
|
|
24650
24661
|
}
|
|
24651
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24652
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24662
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrentFirmBranchService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24663
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrentFirmBranchService, providedIn: 'root' }); }
|
|
24653
24664
|
}
|
|
24654
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24665
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CurrentFirmBranchService, decorators: [{
|
|
24655
24666
|
type: Injectable,
|
|
24656
24667
|
args: [{
|
|
24657
24668
|
providedIn: 'root'
|
|
@@ -24659,6 +24670,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
|
|
|
24659
24670
|
}] });
|
|
24660
24671
|
|
|
24661
24672
|
const EXCEL_TYPE = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8';
|
|
24673
|
+
const XLSX_HEADER_STYLE = {
|
|
24674
|
+
fill: { patternType: 'solid', fgColor: { rgb: '00B7F0' } },
|
|
24675
|
+
font: { bold: true, color: { rgb: 'FFFFFF' } },
|
|
24676
|
+
};
|
|
24662
24677
|
/**
|
|
24663
24678
|
* Service to work with XLSX (generate, download, e.t.c.)
|
|
24664
24679
|
*/
|
|
@@ -24699,21 +24714,50 @@ class XlsxService {
|
|
|
24699
24714
|
// Prepare to add table data to the worksheet, processing each cell
|
|
24700
24715
|
const rows = Array.from(data.rows)
|
|
24701
24716
|
.filter((row) => !row.classList.contains('expandable-row'))
|
|
24702
|
-
.map((row) =>
|
|
24717
|
+
.map((row) => {
|
|
24718
|
+
const cells = Array.from(row.cells);
|
|
24719
|
+
// last column content is aligned to right (same as in PDF export)
|
|
24720
|
+
return cells.map((cell, index) => this.htmlToXlsCell(cell, cells.length > 1 && index === cells.length - 1));
|
|
24721
|
+
});
|
|
24703
24722
|
// Add the processed table data to the worksheet
|
|
24704
24723
|
xlsx.utils.sheet_add_aoa(worksheet, rows, { origin: -1 });
|
|
24705
|
-
// set empty row after current table
|
|
24706
|
-
xlsx.utils.sheet_add_aoa(worksheet, [], { origin: -1 });
|
|
24724
|
+
// set empty row after current table (empty aoa adds nothing, so a blank cell is required)
|
|
24725
|
+
xlsx.utils.sheet_add_aoa(worksheet, [['']], { origin: -1 });
|
|
24707
24726
|
});
|
|
24708
24727
|
xlsx.utils.book_append_sheet(workbook, worksheet);
|
|
24709
24728
|
return xlsx.write(workbook, { bookType: 'xlsx', type: 'array', compression: true });
|
|
24710
24729
|
}
|
|
24711
|
-
|
|
24730
|
+
/**
|
|
24731
|
+
* Builds xlsx-js-style CellObject, which carries the cell styles (s)
|
|
24732
|
+
*/
|
|
24733
|
+
htmlToXlsCell(cell, isAlignedRight) {
|
|
24712
24734
|
// removes mobile headers from cell
|
|
24713
24735
|
cell.querySelectorAll('.m-caption').forEach(node => node.remove());
|
|
24714
24736
|
const cellValue = cell.innerText.trim();
|
|
24715
24737
|
// regex to check currency value
|
|
24716
|
-
|
|
24738
|
+
const isCurrency = /^-?\$/.test(cellValue);
|
|
24739
|
+
return {
|
|
24740
|
+
t: isCurrency ? 'n' : 's',
|
|
24741
|
+
v: isCurrency ? this.currencyToNumber(cellValue) : cellValue,
|
|
24742
|
+
s: this.getCellStyle(cell, isAlignedRight),
|
|
24743
|
+
};
|
|
24744
|
+
}
|
|
24745
|
+
/**
|
|
24746
|
+
* xlsx ignores CSS, so cell styles are taken from the cell classes (@see EXPORT_CELL_STYLES)
|
|
24747
|
+
*/
|
|
24748
|
+
getCellStyle(cell, isAlignedRight) {
|
|
24749
|
+
// adds colored table header
|
|
24750
|
+
const style = cell.tagName === 'TH' ? { ...XLSX_HEADER_STYLE } : {};
|
|
24751
|
+
cell.classList.forEach((className) => {
|
|
24752
|
+
// the dictionary holds only the styles that are important for convenient work with the xlsx file
|
|
24753
|
+
if (EXPORT_CELL_STYLES[className]) {
|
|
24754
|
+
Object.assign(style, EXPORT_CELL_STYLES[className].xlsx);
|
|
24755
|
+
}
|
|
24756
|
+
});
|
|
24757
|
+
if (isAlignedRight) {
|
|
24758
|
+
Object.assign(style, EXPORT_CELL_STYLES['text-right'].xlsx);
|
|
24759
|
+
}
|
|
24760
|
+
return style;
|
|
24717
24761
|
}
|
|
24718
24762
|
/**
|
|
24719
24763
|
* function which reconverts values from customCurrencyPipe
|
|
@@ -24746,10 +24790,10 @@ class XlsxService {
|
|
|
24746
24790
|
const data = new Blob([excelFile], { type: EXCEL_TYPE });
|
|
24747
24791
|
FileSaver.saveAs(data, `${fileName}.xlsx`);
|
|
24748
24792
|
}
|
|
24749
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24750
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24793
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24794
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: XlsxService, providedIn: 'root' }); }
|
|
24751
24795
|
}
|
|
24752
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24796
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: XlsxService, decorators: [{
|
|
24753
24797
|
type: Injectable,
|
|
24754
24798
|
args: [{
|
|
24755
24799
|
providedIn: 'root'
|
|
@@ -24766,7 +24810,7 @@ class CorelogicInterceptor {
|
|
|
24766
24810
|
}
|
|
24767
24811
|
intercept(request, next) {
|
|
24768
24812
|
// skip non-corelogic requests
|
|
24769
|
-
if (!request.url.includes(this.environment.
|
|
24813
|
+
if (!request.url.includes(this.environment.coreLogicUrlAu) && !request.url.includes(this.environment.coreLogicUrlNz)) {
|
|
24770
24814
|
return next.handle(request);
|
|
24771
24815
|
}
|
|
24772
24816
|
// don't need token for this endpoint
|
|
@@ -24783,10 +24827,10 @@ class CorelogicInterceptor {
|
|
|
24783
24827
|
}
|
|
24784
24828
|
});
|
|
24785
24829
|
}
|
|
24786
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24787
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24830
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicInterceptor, deps: [{ token: CorelogicService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24831
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicInterceptor }); }
|
|
24788
24832
|
}
|
|
24789
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24833
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CorelogicInterceptor, decorators: [{
|
|
24790
24834
|
type: Injectable
|
|
24791
24835
|
}], ctorParameters: () => [{ type: CorelogicService }, { type: undefined, decorators: [{
|
|
24792
24836
|
type: Inject,
|
|
@@ -24822,10 +24866,10 @@ class FinancialYearInterceptor {
|
|
|
24822
24866
|
}
|
|
24823
24867
|
return next.handle(clonedReq);
|
|
24824
24868
|
}
|
|
24825
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24826
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24869
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24870
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearInterceptor }); }
|
|
24827
24871
|
}
|
|
24828
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24872
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
|
|
24829
24873
|
type: Injectable
|
|
24830
24874
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
24831
24875
|
type: Inject,
|
|
@@ -24859,10 +24903,10 @@ class UserSwitcherInterceptor {
|
|
|
24859
24903
|
intercept(request, next) {
|
|
24860
24904
|
return next.handle(this.switch(request, this.userSwitcherService.get()));
|
|
24861
24905
|
}
|
|
24862
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24863
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
24906
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherInterceptor, deps: [{ token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24907
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherInterceptor }); }
|
|
24864
24908
|
}
|
|
24865
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24909
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
|
|
24866
24910
|
type: Injectable
|
|
24867
24911
|
}], ctorParameters: () => [{ type: UserSwitcherService }, { type: undefined, decorators: [{
|
|
24868
24912
|
type: Inject,
|
|
@@ -25240,10 +25284,10 @@ class PreloaderInterceptor {
|
|
|
25240
25284
|
findEndpoint(requestPath) {
|
|
25241
25285
|
return Object.values(ENDPOINTS).find((endpoint) => endpoint.test(requestPath));
|
|
25242
25286
|
}
|
|
25243
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25244
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25287
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25288
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderInterceptor }); }
|
|
25245
25289
|
}
|
|
25246
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25290
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: PreloaderInterceptor, decorators: [{
|
|
25247
25291
|
type: Injectable
|
|
25248
25292
|
}], ctorParameters: () => [{ type: PreloaderService }] });
|
|
25249
25293
|
|
|
@@ -25278,10 +25322,10 @@ class RewardfulInterceptor {
|
|
|
25278
25322
|
&& (window['Rewardful'].referral || window['Rewardful'].coupon?.id)
|
|
25279
25323
|
&& registrationUrls.some(registrationUrl => request.url.includes(registrationUrl));
|
|
25280
25324
|
}
|
|
25281
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25282
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25325
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RewardfulInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25326
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RewardfulInterceptor }); }
|
|
25283
25327
|
}
|
|
25284
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25328
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RewardfulInterceptor, decorators: [{
|
|
25285
25329
|
type: Injectable
|
|
25286
25330
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
25287
25331
|
type: Inject,
|
|
@@ -25310,10 +25354,10 @@ class AussieInterceptor {
|
|
|
25310
25354
|
}
|
|
25311
25355
|
});
|
|
25312
25356
|
}
|
|
25313
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25314
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25357
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieInterceptor, deps: [{ token: AussieService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25358
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieInterceptor }); }
|
|
25315
25359
|
}
|
|
25316
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25360
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AussieInterceptor, decorators: [{
|
|
25317
25361
|
type: Injectable
|
|
25318
25362
|
}], ctorParameters: () => [{ type: AussieService }, { type: undefined, decorators: [{
|
|
25319
25363
|
type: Inject,
|
|
@@ -25352,10 +25396,10 @@ class AdBlockErrorInterceptor {
|
|
|
25352
25396
|
}
|
|
25353
25397
|
return next.handle(request);
|
|
25354
25398
|
}
|
|
25355
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25356
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25399
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdBlockErrorInterceptor, deps: [{ token: 'environment' }, { token: AdblockDetectorService }, { token: ToastService }, { token: ADBLOCK_ERROR_HTML }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25400
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdBlockErrorInterceptor }); }
|
|
25357
25401
|
}
|
|
25358
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25402
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AdBlockErrorInterceptor, decorators: [{
|
|
25359
25403
|
type: Injectable
|
|
25360
25404
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
25361
25405
|
type: Inject,
|
|
@@ -25366,9 +25410,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
|
|
|
25366
25410
|
}] }] });
|
|
25367
25411
|
|
|
25368
25412
|
class InterceptorsModule {
|
|
25369
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25370
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
25371
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
25413
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
25414
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule }); }
|
|
25415
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, providers: [
|
|
25372
25416
|
{
|
|
25373
25417
|
provide: HTTP_INTERCEPTORS,
|
|
25374
25418
|
useClass: CorelogicInterceptor,
|
|
@@ -25411,7 +25455,7 @@ class InterceptorsModule {
|
|
|
25411
25455
|
}
|
|
25412
25456
|
] }); }
|
|
25413
25457
|
}
|
|
25414
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25458
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: InterceptorsModule, decorators: [{
|
|
25415
25459
|
type: NgModule,
|
|
25416
25460
|
args: [{
|
|
25417
25461
|
providers: [
|
|
@@ -25463,13 +25507,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
|
|
|
25463
25507
|
* https://angular.io/guide/creating-libraries
|
|
25464
25508
|
*/
|
|
25465
25509
|
class CoreModule {
|
|
25466
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25467
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
25510
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
25511
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
|
|
25468
25512
|
InterceptorsModule] }); }
|
|
25469
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
25513
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CoreModule, imports: [CommonModule$1,
|
|
25470
25514
|
InterceptorsModule] }); }
|
|
25471
25515
|
}
|
|
25472
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25516
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: CoreModule, decorators: [{
|
|
25473
25517
|
type: NgModule,
|
|
25474
25518
|
args: [{
|
|
25475
25519
|
declarations: [],
|
|
@@ -25489,10 +25533,10 @@ class AppCurrencyPipe extends CurrencyPipe {
|
|
|
25489
25533
|
digitsInfo = digitsInfo ?? '1.0-' + (value.toString().match(/[1-9]/)?.index || 2);
|
|
25490
25534
|
return super.transform(value, currencyCode, display, digitsInfo, locale);
|
|
25491
25535
|
}
|
|
25492
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25493
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
25536
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AppCurrencyPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
25537
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: AppCurrencyPipe, isStandalone: true, name: "appCurrency" }); }
|
|
25494
25538
|
}
|
|
25495
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25539
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AppCurrencyPipe, decorators: [{
|
|
25496
25540
|
type: Pipe,
|
|
25497
25541
|
args: [{
|
|
25498
25542
|
name: 'appCurrency',
|
|
@@ -25507,10 +25551,10 @@ class AppPercentPipe {
|
|
|
25507
25551
|
transform(value, total, floor) {
|
|
25508
25552
|
return this.percentagePipe.transform(value, total, floor) + '%';
|
|
25509
25553
|
}
|
|
25510
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25511
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
25554
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AppPercentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
25555
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: AppPercentPipe, isStandalone: true, name: "percentage" }); }
|
|
25512
25556
|
}
|
|
25513
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25557
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: AppPercentPipe, decorators: [{
|
|
25514
25558
|
type: Pipe,
|
|
25515
25559
|
args: [{
|
|
25516
25560
|
name: 'percentage',
|
|
@@ -25537,10 +25581,10 @@ class RelativeDatePipe {
|
|
|
25537
25581
|
return this.datePipe.transform(date.toDate(), DateFormatsEnum.DATE_SLASH);
|
|
25538
25582
|
}
|
|
25539
25583
|
}
|
|
25540
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25541
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
25584
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RelativeDatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
25585
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: RelativeDatePipe, isStandalone: true, name: "relativeDate" }); }
|
|
25542
25586
|
}
|
|
25543
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25587
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: RelativeDatePipe, decorators: [{
|
|
25544
25588
|
type: Pipe,
|
|
25545
25589
|
args: [{
|
|
25546
25590
|
name: 'relativeDate',
|
|
@@ -25555,10 +25599,10 @@ class SafeUrlPipe {
|
|
|
25555
25599
|
transform(url) {
|
|
25556
25600
|
return this.sanitizer.bypassSecurityTrustResourceUrl(url);
|
|
25557
25601
|
}
|
|
25558
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25559
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
25602
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SafeUrlPipe, deps: [{ token: i1$2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
25603
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.7", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
|
|
25560
25604
|
}
|
|
25561
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25605
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SafeUrlPipe, decorators: [{
|
|
25562
25606
|
type: Pipe,
|
|
25563
25607
|
args: [{
|
|
25564
25608
|
name: 'safeUrl',
|
|
@@ -25911,10 +25955,10 @@ class BusinessResolver {
|
|
|
25911
25955
|
resolve() {
|
|
25912
25956
|
return this.soleDetailsService.getFirst();
|
|
25913
25957
|
}
|
|
25914
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25915
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25958
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25959
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessResolver, providedIn: 'root' }); }
|
|
25916
25960
|
}
|
|
25917
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25961
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: BusinessResolver, decorators: [{
|
|
25918
25962
|
type: Injectable,
|
|
25919
25963
|
args: [{ providedIn: 'root' }]
|
|
25920
25964
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
|
@@ -25926,10 +25970,10 @@ class SoleDetailsResolver {
|
|
|
25926
25970
|
resolve() {
|
|
25927
25971
|
return this.soleDetails.getFirst();
|
|
25928
25972
|
}
|
|
25929
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
25930
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
25973
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
25974
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsResolver, providedIn: 'root' }); }
|
|
25931
25975
|
}
|
|
25932
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
25976
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: SoleDetailsResolver, decorators: [{
|
|
25933
25977
|
type: Injectable,
|
|
25934
25978
|
args: [{ providedIn: 'root' }]
|
|
25935
25979
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
|
@@ -26253,8 +26297,8 @@ class AddressForm extends AbstractForm {
|
|
|
26253
26297
|
/**
|
|
26254
26298
|
* Check if Australia is selected in country field
|
|
26255
26299
|
*/
|
|
26256
|
-
|
|
26257
|
-
return this.get('country').value?.id
|
|
26300
|
+
isCorelogicAvailable() {
|
|
26301
|
+
return Country.corelogicList.includes(this.get('country').value?.id);
|
|
26258
26302
|
}
|
|
26259
26303
|
/**
|
|
26260
26304
|
* Enable manual mode
|
|
@@ -26346,7 +26390,7 @@ class AddressForm extends AbstractForm {
|
|
|
26346
26390
|
if (this.isManual) {
|
|
26347
26391
|
return;
|
|
26348
26392
|
}
|
|
26349
|
-
if (this.
|
|
26393
|
+
if (this.isCorelogicAvailable()) {
|
|
26350
26394
|
this.get('googlePlaceId').disable();
|
|
26351
26395
|
this.get('corelogicLocId').enable();
|
|
26352
26396
|
this.get('corelogicRefId').enable();
|
|
@@ -26680,10 +26724,10 @@ class UniqueEmailValidator {
|
|
|
26680
26724
|
validate(control) {
|
|
26681
26725
|
return this.userService.search(control.value).pipe(map(user => user ? { emailIsUsed: true } : null));
|
|
26682
26726
|
}
|
|
26683
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
26684
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
26727
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UniqueEmailValidator, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
26728
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UniqueEmailValidator, providedIn: 'root' }); }
|
|
26685
26729
|
}
|
|
26686
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
26730
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: UniqueEmailValidator, decorators: [{
|
|
26687
26731
|
type: Injectable,
|
|
26688
26732
|
args: [{ providedIn: 'root' }]
|
|
26689
26733
|
}], ctorParameters: () => [{ type: UserService }] });
|
|
@@ -27196,10 +27240,10 @@ class ClientMovementForm extends AbstractForm {
|
|
|
27196
27240
|
firmBranch: new FormControl(clientMovement.firmBranch, [Validators.required]),
|
|
27197
27241
|
}, clientMovement);
|
|
27198
27242
|
}
|
|
27199
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
27200
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
27243
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementForm, deps: [{ token: ClientMovement }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
27244
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementForm, providedIn: 'root' }); }
|
|
27201
27245
|
}
|
|
27202
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
27246
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: ClientMovementForm, decorators: [{
|
|
27203
27247
|
type: Injectable,
|
|
27204
27248
|
args: [{
|
|
27205
27249
|
providedIn: 'root'
|
|
@@ -27212,10 +27256,10 @@ class EmployeeDetailsForm extends AbstractForm {
|
|
|
27212
27256
|
firmBranches: new FormControl(employeeDetails.firmBranches, [Validators.required]),
|
|
27213
27257
|
}, employeeDetails);
|
|
27214
27258
|
}
|
|
27215
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
27216
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
27259
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeDetailsForm, deps: [{ token: EmployeeDetails }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
27260
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeDetailsForm, providedIn: 'root' }); }
|
|
27217
27261
|
}
|
|
27218
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
27262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EmployeeDetailsForm, decorators: [{
|
|
27219
27263
|
type: Injectable,
|
|
27220
27264
|
args: [{
|
|
27221
27265
|
providedIn: 'root'
|
|
@@ -30732,5 +30776,5 @@ var MessagesEnum;
|
|
|
30732
30776
|
* Generated bundle index. Do not edit.
|
|
30733
30777
|
*/
|
|
30734
30778
|
|
|
30735
|
-
export { ADBLOCK_ERROR_HTML, ADBLOCK_ERROR_HTML_VALUE, AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockDetectorService, Address, AddressForm, AddressSuggestion, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AppPercentPipe, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AussieAppointment, AussieAppointmentForm, AussieBroker, AussieConfirmationForm, AussieService, AussieStore, AussieStoreForm, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountForm, BankAccountImportForm, BankAccountMessagesEnum, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsFilterForm, BankAccountsImportForm, BankConnection, BankConnectionCollection, BankConnectionForm, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionComment, BankTransactionCommentForm, BankTransactionCommentMessagesEnum, BankTransactionCommentService, BankTransactionImport, BankTransactionImportCollection, BankTransactionImportMessagesEnum, BankTransactionImportService, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BasiqUser, BasiqUserService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetCashFlowItem, BudgetCollection, BudgetForm, BudgetMessagesEnum, BudgetMetadataInterface, BudgetRule, BudgetRuleCollection, BudgetRuleForm, BudgetRuleItem, BudgetRuleItemCollection, BudgetRuleService, BudgetService, BudgetTypeEnum, BusinessChartAccountsEnum, BusinessDepreciationMethod, BusinessDepreciationMethodEnum, BusinessDepreciationMethodForm, BusinessDepreciationMethodService, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, COLORS, CalculationFormItem, CalculationFormTypeEnum, CalendarEvent, CalendarEventCollection, CalendarEventTypeEnum, CalendarReminder, CalendarReminderCollection, CalendarReminderForm, CalendarReminderMessagesEnum, CalendarReminderService, CalendarReminderTypeEnum, CalendarViewEnum, CapitalLoss, CapitalLossForm, CapitalLossMessagesEnum, CapitalLossService, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueCollection, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatFilterForm, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientCouponService, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteCollection, ClientInviteForm, ClientInviteMessages, ClientInvitePutForm, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementForm, ClientMovementMessagesEnum, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CollectionForm, CoreModule, CorelogicMessagesEnum, CorelogicService, Country, CountryService, Currency, CurrencyService, CurrencyTypeEnum, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DailyFrequencyEnum, DashboardSettings, DashboardSettingsForm, DashboardSettingsService, DateAmountDictionary, DateFormatsEnum, DateRange, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpRateEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderCollection, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EXPENSE_CATEGORY_BY_TYPE, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExchangeRate, ExchangeRateService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialGoal, FinancialGoalCollection, FinancialGoalFilterForm, FinancialGoalForm, FinancialGoalMessagesEnum, FinancialGoalService, FinancialGoalStatusEnum, FinancialGoalTypeEnum, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GooglePlaceService, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingCostAdjustment, HoldingCostAdjustmentForm, HoldingCostAdjustmentMessagesEnum, HoldingCostAdjustmentService, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTaxStatement, HoldingTaxStatementForm, HoldingTaxStatementItem, HoldingTaxStatementItemForm, HoldingTaxStatementMessagesEnum, HoldingTaxStatementPayer, HoldingTaxStatementPayerForm, HoldingTaxStatementPayerMessagesEnum, HoldingTaxStatementPayerService, HoldingTaxStatementService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportCollection, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeReportItem, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypePosition, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, INCOME_CATEGORY_BY_TYPE, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, InvoiceTransactionsService, JsPdf, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, MoneyCalendarEvent, MoneyCalendarEventCollection, MoneyScheduleFilterForm, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, MyTaxBusinessDetails, MyTaxBusinessDetailsForm, MyTaxBusinessIncome, MyTaxBusinessIncomeForm, MyTaxBusinessIncomeOrLossesForm, MyTaxBusinessLosses, MyTaxBusinessLossesForm, MyTaxCgt, MyTaxCgtForm, MyTaxDeductions, MyTaxDeductionsForm, MyTaxDividends, MyTaxDividendsForm, MyTaxEstimate, MyTaxIncomeStatements, MyTaxIncomeStatementsForm, MyTaxIncomeTests, MyTaxIncomeTestsForm, MyTaxInterest, MyTaxInterestForm, MyTaxLosses, MyTaxLossesForm, MyTaxMedicareForm, MyTaxOffsets, MyTaxOffsetsForm, MyTaxOtherIncome, MyTaxOtherIncomeForm, MyTaxPartnershipsAndTrusts, MyTaxPartnershipsAndTrustsForm, MyTaxRent, MyTaxRentForm, Notification, Occupation, OccupationService, PALETTE_EQUITY, PALETTE_PRIMARY, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, PriorDepreciationService, PriorTransactionService, Property, PropertyAddForm, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareForm, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationCollection, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, REPORTS, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, RelativeDatePipe, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestMessagesEnum, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceEnum, ServicePriceOldEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SharesightDetails, SharesightDetailsMessagesEnum, SharesightDetailsService, SharesightPortfolio, SharesightPortfolioMessages, SharesightPortfolioService, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessCloseForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossCollection, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactItem, SoleContactItemCollection, SoleContactMessagesEnum, SoleContactService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SoleInvoiceTypeEnum, SolePlItem, SolePlItemCollection, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionCollection, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewFilterForm, TaxReviewFilterStatusEnum, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, TimezoneEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseCollection, TransactionBaseFilter, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReportItem, TransactionReportItemCollection, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TreeNodeData, USER_ROLES, USER_WORK_POSITION, UniqueEmailValidator, User, UserCollection, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeCollection, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserForm, UserInviteForm, UserMedicareExemptionEnum, UserMessagesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimForm, VehicleClaimMethodEnum, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, YoutubeVideosEnum, atLeastOneCheckedValidator, atLeastOneEnabledValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, compareWithControlValidator, conditionalValidator, createDate, currentFinYearValidator, dateRangeValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, recurringDates, replace, sort, sortDeep, toArray };
|
|
30779
|
+
export { ADBLOCK_ERROR_HTML, ADBLOCK_ERROR_HTML_VALUE, AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockDetectorService, Address, AddressForm, AddressSuggestion, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AppPercentPipe, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AussieAppointment, AussieAppointmentForm, AussieBroker, AussieConfirmationForm, AussieService, AussieStore, AussieStoreForm, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountForm, BankAccountImportForm, BankAccountMessagesEnum, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsFilterForm, BankAccountsImportForm, BankConnection, BankConnectionCollection, BankConnectionForm, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionComment, BankTransactionCommentForm, BankTransactionCommentMessagesEnum, BankTransactionCommentService, BankTransactionImport, BankTransactionImportCollection, BankTransactionImportMessagesEnum, BankTransactionImportService, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BasiqUser, BasiqUserService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetCashFlowItem, BudgetCollection, BudgetForm, BudgetMessagesEnum, BudgetMetadataInterface, BudgetRule, BudgetRuleCollection, BudgetRuleForm, BudgetRuleItem, BudgetRuleItemCollection, BudgetRuleService, BudgetService, BudgetTypeEnum, BusinessChartAccountsEnum, BusinessDepreciationMethod, BusinessDepreciationMethodEnum, BusinessDepreciationMethodForm, BusinessDepreciationMethodService, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, COLORS, CalculationFormItem, CalculationFormTypeEnum, CalendarEvent, CalendarEventCollection, CalendarEventTypeEnum, CalendarReminder, CalendarReminderCollection, CalendarReminderForm, CalendarReminderMessagesEnum, CalendarReminderService, CalendarReminderTypeEnum, CalendarViewEnum, CapitalLoss, CapitalLossForm, CapitalLossMessagesEnum, CapitalLossService, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueCollection, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatFilterForm, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientCouponService, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteCollection, ClientInviteForm, ClientInviteMessages, ClientInvitePutForm, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementForm, ClientMovementMessagesEnum, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CollectionForm, CoreModule, CorelogicMessagesEnum, CorelogicService, Country, CountryService, Currency, CurrencyService, CurrencyTypeEnum, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DailyFrequencyEnum, DashboardSettings, DashboardSettingsForm, DashboardSettingsService, DateAmountDictionary, DateFormatsEnum, DateRange, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpRateEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderCollection, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EXPENSE_CATEGORY_BY_TYPE, EXPORT_CELL_STYLES, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExchangeRate, ExchangeRateService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialGoal, FinancialGoalCollection, FinancialGoalFilterForm, FinancialGoalForm, FinancialGoalMessagesEnum, FinancialGoalService, FinancialGoalStatusEnum, FinancialGoalTypeEnum, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GooglePlaceService, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingCostAdjustment, HoldingCostAdjustmentForm, HoldingCostAdjustmentMessagesEnum, HoldingCostAdjustmentService, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTaxStatement, HoldingTaxStatementForm, HoldingTaxStatementItem, HoldingTaxStatementItemForm, HoldingTaxStatementMessagesEnum, HoldingTaxStatementPayer, HoldingTaxStatementPayerForm, HoldingTaxStatementPayerMessagesEnum, HoldingTaxStatementPayerService, HoldingTaxStatementService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportCollection, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeReportItem, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypePosition, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, INCOME_CATEGORY_BY_TYPE, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, InvoiceTransactionsService, JsPdf, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, MoneyCalendarEvent, MoneyCalendarEventCollection, MoneyScheduleFilterForm, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, MyTaxBusinessDetails, MyTaxBusinessDetailsForm, MyTaxBusinessIncome, MyTaxBusinessIncomeForm, MyTaxBusinessIncomeOrLossesForm, MyTaxBusinessLosses, MyTaxBusinessLossesForm, MyTaxCgt, MyTaxCgtForm, MyTaxDeductions, MyTaxDeductionsForm, MyTaxDividends, MyTaxDividendsForm, MyTaxEstimate, MyTaxIncomeStatements, MyTaxIncomeStatementsForm, MyTaxIncomeTests, MyTaxIncomeTestsForm, MyTaxInterest, MyTaxInterestForm, MyTaxLosses, MyTaxLossesForm, MyTaxMedicareForm, MyTaxOffsets, MyTaxOffsetsForm, MyTaxOtherIncome, MyTaxOtherIncomeForm, MyTaxPartnershipsAndTrusts, MyTaxPartnershipsAndTrustsForm, MyTaxRent, MyTaxRentForm, Notification, Occupation, OccupationService, PALETTE_EQUITY, PALETTE_PRIMARY, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, PriorDepreciationService, PriorTransactionService, Property, PropertyAddForm, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareForm, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationCollection, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, REPORTS, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, RelativeDatePipe, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestMessagesEnum, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceEnum, ServicePriceOldEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SharesightDetails, SharesightDetailsMessagesEnum, SharesightDetailsService, SharesightPortfolio, SharesightPortfolioMessages, SharesightPortfolioService, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessCloseForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossCollection, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactItem, SoleContactItemCollection, SoleContactMessagesEnum, SoleContactService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SoleInvoiceTypeEnum, SolePlItem, SolePlItemCollection, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionCollection, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewFilterForm, TaxReviewFilterStatusEnum, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, TimezoneEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseCollection, TransactionBaseFilter, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReportItem, TransactionReportItemCollection, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TreeNodeData, USER_ROLES, USER_WORK_POSITION, UniqueEmailValidator, User, UserCollection, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeCollection, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserForm, UserInviteForm, UserMedicareExemptionEnum, UserMessagesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimForm, VehicleClaimMethodEnum, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, YoutubeVideosEnum, atLeastOneCheckedValidator, atLeastOneEnabledValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, compareWithControlValidator, conditionalValidator, createDate, currentFinYearValidator, dateRangeValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, recurringDates, replace, sort, sortDeep, toArray };
|
|
30736
30780
|
//# sourceMappingURL=taxtank-core.mjs.map
|