taxtank-core 2.0.108 → 2.0.109
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.mjs +91 -164
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +43 -58
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ import { formatDate, DatePipe, CurrencyPipe, CommonModule as CommonModule$1 } fr
|
|
|
5
5
|
import * as i1 from '@angular/common/http';
|
|
6
6
|
import { HttpClient, HttpErrorResponse, HttpHeaders, HTTP_INTERCEPTORS, HttpParams } from '@angular/common/http';
|
|
7
7
|
import { map, filter, catchError, finalize, switchMap, first as first$1, take, mergeMap, startWith, debounceTime, distinctUntilChanged } from 'rxjs/operators';
|
|
8
|
-
import { ReplaySubject, Subject, Observable, shareReplay, of, forkJoin, throwError, BehaviorSubject, combineLatest, from, merge as merge$1 } from 'rxjs';
|
|
8
|
+
import { ReplaySubject, Subject, Observable, shareReplay, of, forkJoin, throwError, concatMap, BehaviorSubject, combineLatest, from, merge as merge$1 } from 'rxjs';
|
|
9
9
|
import { plainToClass, Type, Transform, Exclude, Expose, classToPlain } from 'class-transformer';
|
|
10
10
|
import get from 'lodash/get';
|
|
11
11
|
import 'reflect-metadata';
|
|
@@ -759,6 +759,21 @@ class BasiqUser extends AbstractModel {
|
|
|
759
759
|
super(...arguments);
|
|
760
760
|
this.name = 'Profile1';
|
|
761
761
|
}
|
|
762
|
+
/**
|
|
763
|
+
* reminder to sign basiq consent after x days before the expiration
|
|
764
|
+
*/
|
|
765
|
+
static { this.consentExpiryReminderDays = 30; }
|
|
766
|
+
isBasiqConsentExpiring() {
|
|
767
|
+
if (!this.consentExpiryDate || this.isBasiqConsentExpired()) {
|
|
768
|
+
return false;
|
|
769
|
+
}
|
|
770
|
+
const reminderDate = new Date(this.consentExpiryDate);
|
|
771
|
+
reminderDate.setDate(this.consentExpiryDate.getDate() - BasiqUser.consentExpiryReminderDays);
|
|
772
|
+
return new Date() >= reminderDate;
|
|
773
|
+
}
|
|
774
|
+
isBasiqConsentExpired() {
|
|
775
|
+
return this.consentExpiryDate && new Date() >= this.consentExpiryDate;
|
|
776
|
+
}
|
|
762
777
|
}
|
|
763
778
|
__decorate([
|
|
764
779
|
Type(() => Date)
|
|
@@ -4457,31 +4472,13 @@ var UserStatusEnum;
|
|
|
4457
4472
|
})(UserStatusEnum || (UserStatusEnum = {}));
|
|
4458
4473
|
|
|
4459
4474
|
class ClientDetails extends ClientDetails$1 {
|
|
4460
|
-
/**
|
|
4461
|
-
* reminder to sign basiq consent after x days before the expiration
|
|
4462
|
-
*/
|
|
4463
|
-
static { this.consentExpiryReminderDays = 30; }
|
|
4464
4475
|
get taxFileNumberMasked() {
|
|
4465
4476
|
const maskedLength = this.taxFileNumber.length - 4;
|
|
4466
4477
|
const maskedPart = '*'.repeat(maskedLength);
|
|
4467
4478
|
const lastFour = this.taxFileNumber.slice(-4);
|
|
4468
4479
|
return maskedPart + lastFour;
|
|
4469
4480
|
}
|
|
4470
|
-
isBasiqConsentExpiring() {
|
|
4471
|
-
if (!this.basiqConsentExpiryDate || this.isBasiqConsentExpired()) {
|
|
4472
|
-
return false;
|
|
4473
|
-
}
|
|
4474
|
-
const reminderDate = new Date(this.basiqConsentExpiryDate);
|
|
4475
|
-
reminderDate.setDate(this.basiqConsentExpiryDate.getDate() - ClientDetails.consentExpiryReminderDays);
|
|
4476
|
-
return new Date() >= reminderDate;
|
|
4477
|
-
}
|
|
4478
|
-
isBasiqConsentExpired() {
|
|
4479
|
-
return this.basiqConsentExpiryDate && new Date() >= this.basiqConsentExpiryDate;
|
|
4480
|
-
}
|
|
4481
4481
|
}
|
|
4482
|
-
__decorate([
|
|
4483
|
-
Type(() => Date)
|
|
4484
|
-
], ClientDetails.prototype, "basiqConsentExpiryDate", void 0);
|
|
4485
4482
|
|
|
4486
4483
|
class AnnualClientDetails extends AbstractModel {
|
|
4487
4484
|
constructor() {
|
|
@@ -9852,6 +9849,12 @@ class BankTransactionCollection extends Collection {
|
|
|
9852
9849
|
}
|
|
9853
9850
|
}
|
|
9854
9851
|
|
|
9852
|
+
class BankConnectionCollection extends Collection {
|
|
9853
|
+
getBanks() {
|
|
9854
|
+
return new Collection(this.mapBy('bank'));
|
|
9855
|
+
}
|
|
9856
|
+
}
|
|
9857
|
+
|
|
9855
9858
|
class ChartAccountsCollection extends Collection {
|
|
9856
9859
|
constructor(items = []) {
|
|
9857
9860
|
super(items);
|
|
@@ -12580,6 +12583,9 @@ let RestService$1 = class RestService extends DataService {
|
|
|
12580
12583
|
}
|
|
12581
12584
|
return this.getCacheSubjectObservable();
|
|
12582
12585
|
}
|
|
12586
|
+
findBy(path, values) {
|
|
12587
|
+
return this.get().pipe(map((projects) => projects.findBy(path, values)));
|
|
12588
|
+
}
|
|
12583
12589
|
getBy(path, values) {
|
|
12584
12590
|
return this.get().pipe(map((projects) => projects.filterBy(path, values)));
|
|
12585
12591
|
}
|
|
@@ -13024,7 +13030,7 @@ class BankConnectionService extends RestService$1 {
|
|
|
13024
13030
|
super(environment);
|
|
13025
13031
|
this.environment = environment;
|
|
13026
13032
|
this.modelClass = BankConnection;
|
|
13027
|
-
this.collectionClass =
|
|
13033
|
+
this.collectionClass = BankConnectionCollection;
|
|
13028
13034
|
this.endpointUri = 'bank-connections';
|
|
13029
13035
|
this.disabledMethods = ['postBatch', 'putBatch', 'delete', 'deleteBatch'];
|
|
13030
13036
|
this.listenEvents();
|
|
@@ -13177,6 +13183,7 @@ class BasiqTokenService extends RestService$1 {
|
|
|
13177
13183
|
this.collectionClass = Collection;
|
|
13178
13184
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
13179
13185
|
}
|
|
13186
|
+
static { this.basiqConsentUrl = 'https://consent.basiq.io/home'; }
|
|
13180
13187
|
/**
|
|
13181
13188
|
* Access token to use basiq flow
|
|
13182
13189
|
*/
|
|
@@ -13210,25 +13217,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
|
|
|
13210
13217
|
* service is responsible for fetching bank related information
|
|
13211
13218
|
*/
|
|
13212
13219
|
class BasiqService extends RestService$1 {
|
|
13213
|
-
|
|
13214
|
-
static { this.basiqConsentUrl = 'https://consent.basiq.io/home'; }
|
|
13215
|
-
/**
|
|
13216
|
-
* Basiq does not provide a hook, so we have to check job status manually every x seconds
|
|
13217
|
-
*/
|
|
13218
|
-
static { this.retrieveAccountsCheckInterval = 3000; }
|
|
13219
|
-
/**
|
|
13220
|
-
* How long we will wait accounts retrieving, break after timeout if not retireved
|
|
13221
|
-
*/
|
|
13222
|
-
static { this.retrieveAccountsTimeout = 20000; }
|
|
13223
|
-
constructor(http, eventDispatcherService, environment,
|
|
13224
|
-
// this inject required to init bank connection service and listen basiq login event
|
|
13225
|
-
bankConnectionService) {
|
|
13220
|
+
constructor(environment) {
|
|
13226
13221
|
super(environment);
|
|
13227
|
-
this.http = http;
|
|
13228
|
-
this.eventDispatcherService = eventDispatcherService;
|
|
13229
13222
|
this.environment = environment;
|
|
13230
|
-
this.bankConnectionService = bankConnectionService;
|
|
13231
13223
|
this.endpointUri = 'basiq/accounts';
|
|
13224
|
+
this.http = inject(HttpClient);
|
|
13225
|
+
this.eventDispatcherService = inject(EventDispatcherService);
|
|
13226
|
+
// required to init bank connection service and listen basiq login event
|
|
13227
|
+
this.bankConnectionService = inject(BankConnectionService);
|
|
13232
13228
|
this.collectionClass = BankAccountCollection;
|
|
13233
13229
|
this.modelClass = BankAccount;
|
|
13234
13230
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
@@ -13251,45 +13247,6 @@ class BasiqService extends RestService$1 {
|
|
|
13251
13247
|
// this.redirectToBasiqConsent(token.value, connection.bank.externalId, true);
|
|
13252
13248
|
));
|
|
13253
13249
|
}
|
|
13254
|
-
/**
|
|
13255
|
-
* Open basiq consent ui to allow user to log in to bank
|
|
13256
|
-
* @param token User's basiq token
|
|
13257
|
-
* @param bankId External id of selected bank
|
|
13258
|
-
* @param consentExist
|
|
13259
|
-
*/
|
|
13260
|
-
redirectToBasiqConsent(token, bankId, consentExist = false, basiqUser) {
|
|
13261
|
-
const url = new URL(BasiqService.basiqConsentUrl);
|
|
13262
|
-
url.searchParams.set('token', token);
|
|
13263
|
-
url.searchParams.set('institutionId', bankId);
|
|
13264
|
-
url.searchParams.set('state', basiqUser.id);
|
|
13265
|
-
if (consentExist) {
|
|
13266
|
-
url.searchParams.set('action', 'connect');
|
|
13267
|
-
}
|
|
13268
|
-
window.location.replace(url.toString());
|
|
13269
|
-
}
|
|
13270
|
-
/**
|
|
13271
|
-
* redirect to basiq extend consent date to prolong it
|
|
13272
|
-
*/
|
|
13273
|
-
extendConsent(token) {
|
|
13274
|
-
window.location.replace(`${BasiqService.basiqConsentUrl}?token=${token}&action=extend`);
|
|
13275
|
-
}
|
|
13276
|
-
/**
|
|
13277
|
-
* redirect to basiq extend connection date to prolong it
|
|
13278
|
-
*/
|
|
13279
|
-
reauthoriseConnection(token, connection) {
|
|
13280
|
-
let url = `${BasiqService.basiqConsentUrl}?token=${token}&action=reauthorise`;
|
|
13281
|
-
if (connection.isExpiring()) {
|
|
13282
|
-
url += `&connectionId=${connection.externalId}`;
|
|
13283
|
-
}
|
|
13284
|
-
window.location.replace(url);
|
|
13285
|
-
}
|
|
13286
|
-
/**
|
|
13287
|
-
* Open basiq consent ui to allow user to manage basiq access to his bank data
|
|
13288
|
-
* @param token User's basiq token
|
|
13289
|
-
*/
|
|
13290
|
-
redirectToBasiqRevoke(token) {
|
|
13291
|
-
window.location.replace(`${BasiqService.basiqConsentUrl}?token=${token}&action=manage`);
|
|
13292
|
-
}
|
|
13293
13250
|
/**
|
|
13294
13251
|
* listen to notifications to update basiq accounts list
|
|
13295
13252
|
*/
|
|
@@ -13300,7 +13257,7 @@ class BasiqService extends RestService$1 {
|
|
|
13300
13257
|
}
|
|
13301
13258
|
});
|
|
13302
13259
|
}
|
|
13303
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, deps: [{ token:
|
|
13260
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13304
13261
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, providedIn: 'root' }); }
|
|
13305
13262
|
}
|
|
13306
13263
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqService, decorators: [{
|
|
@@ -13308,10 +13265,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
|
|
|
13308
13265
|
args: [{
|
|
13309
13266
|
providedIn: 'root'
|
|
13310
13267
|
}]
|
|
13311
|
-
}], ctorParameters: () => [{ type:
|
|
13268
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
13312
13269
|
type: Inject,
|
|
13313
13270
|
args: ['environment']
|
|
13314
|
-
}] }
|
|
13271
|
+
}] }] });
|
|
13315
13272
|
|
|
13316
13273
|
var BasiqMessagesEnum;
|
|
13317
13274
|
(function (BasiqMessagesEnum) {
|
|
@@ -13320,9 +13277,6 @@ var BasiqMessagesEnum;
|
|
|
13320
13277
|
BasiqMessagesEnum["REVOKE_SUCCESS"] = "Consent to bank feeds has been revoked.";
|
|
13321
13278
|
})(BasiqMessagesEnum || (BasiqMessagesEnum = {}));
|
|
13322
13279
|
|
|
13323
|
-
/**
|
|
13324
|
-
* @TODO Alex shouldn't be a separated service, move to basiqService or interceptor
|
|
13325
|
-
*/
|
|
13326
13280
|
class BasiqUserService extends RestService$1 {
|
|
13327
13281
|
constructor() {
|
|
13328
13282
|
super(...arguments);
|
|
@@ -13330,20 +13284,69 @@ class BasiqUserService extends RestService$1 {
|
|
|
13330
13284
|
this.modelClass = BasiqUser;
|
|
13331
13285
|
this.collectionClass = Collection;
|
|
13332
13286
|
this.disabledMethods = ['postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
|
13287
|
+
this.basiqTokenService = inject(BasiqTokenService);
|
|
13333
13288
|
}
|
|
13334
13289
|
static { this.basiqApiUrl = 'https://au-api.basiq.io'; }
|
|
13290
|
+
static { this.basiqConsentUrl = 'https://consent.basiq.io/home'; }
|
|
13335
13291
|
revokeConsent() {
|
|
13336
13292
|
return this.http.put(`${this.environment.apiV2}/basiq-users/consents/revoke`, {});
|
|
13337
13293
|
}
|
|
13338
13294
|
post(basiqUser = new BasiqUser()) {
|
|
13339
13295
|
return super.post(basiqUser);
|
|
13340
13296
|
}
|
|
13341
|
-
|
|
13342
|
-
|
|
13343
|
-
|
|
13344
|
-
|
|
13345
|
-
return this.
|
|
13346
|
-
|
|
13297
|
+
getWithToken(basiqUserId) {
|
|
13298
|
+
return this.findBy('id', basiqUserId).pipe(concatMap(user => this.basiqTokenService.getOne(user.id).pipe(map(token => ({ user, token: token.value })))));
|
|
13299
|
+
}
|
|
13300
|
+
retrieveJob(jobId, basiqUserId) {
|
|
13301
|
+
return this.basiqTokenService.getOne(basiqUserId).pipe(concatMap(token => {
|
|
13302
|
+
const headers = new HttpHeaders({ Authorization: 'Bearer ' + token.value });
|
|
13303
|
+
return this.http.get(`${BasiqUserService.basiqApiUrl}/jobs/${jobId}`, { headers })
|
|
13304
|
+
.pipe(map((response) => plainToClass(BasiqJobResponse, response)));
|
|
13305
|
+
}));
|
|
13306
|
+
}
|
|
13307
|
+
/**
|
|
13308
|
+
* Open basiq consent ui to allow user to log in to bank
|
|
13309
|
+
*/
|
|
13310
|
+
redirectToBasiqConsent(bankId, basiqUserId) {
|
|
13311
|
+
const user$ = basiqUserId ? this.findBy('id', basiqUserId) : this.post();
|
|
13312
|
+
return user$.pipe(filter(user => !!user), concatMap(user => this.basiqTokenService.getOne(user.id).pipe(map(token => ({ user, token: token.value })))), map(({ user, token }) => {
|
|
13313
|
+
const url = new URL(BasiqUserService.basiqConsentUrl);
|
|
13314
|
+
url.searchParams.set('token', token);
|
|
13315
|
+
url.searchParams.set('institutionId', bankId);
|
|
13316
|
+
url.searchParams.set('state', user.id);
|
|
13317
|
+
if (user.consentId) {
|
|
13318
|
+
url.searchParams.set('action', 'connect');
|
|
13319
|
+
}
|
|
13320
|
+
window.location.replace(url.toString());
|
|
13321
|
+
}));
|
|
13322
|
+
}
|
|
13323
|
+
/**
|
|
13324
|
+
* Open basiq consent ui to allow user to manage basiq access to his bank data
|
|
13325
|
+
*/
|
|
13326
|
+
redirectToBasiqRevoke(basiqUserId) {
|
|
13327
|
+
return this.basiqTokenService.getOne(basiqUserId).pipe(map(token => {
|
|
13328
|
+
window.location.replace(`${BasiqUserService.basiqConsentUrl}?token=${token.value}&action=manage`);
|
|
13329
|
+
}));
|
|
13330
|
+
}
|
|
13331
|
+
/**
|
|
13332
|
+
* redirect to basiq extend consent date to prolong it
|
|
13333
|
+
*/
|
|
13334
|
+
extendConsent(basiqUserId) {
|
|
13335
|
+
return this.basiqTokenService.getOne(basiqUserId).pipe(map(token => {
|
|
13336
|
+
window.location.replace(`${BasiqUserService.basiqConsentUrl}?token=${token}&action=extend`);
|
|
13337
|
+
}));
|
|
13338
|
+
}
|
|
13339
|
+
/**
|
|
13340
|
+
* redirect to basiq extend connection date to prolong it
|
|
13341
|
+
*/
|
|
13342
|
+
reauthoriseConnection(connection) {
|
|
13343
|
+
return this.basiqTokenService.getOne(connection.basiqUser.id).pipe(map(token => {
|
|
13344
|
+
let url = `${BasiqUserService.basiqConsentUrl}?token=${token}&action=reauthorise`;
|
|
13345
|
+
if (connection.isExpiring()) {
|
|
13346
|
+
url += `&connectionId=${connection.externalId}`;
|
|
13347
|
+
}
|
|
13348
|
+
window.location.replace(url);
|
|
13349
|
+
}));
|
|
13347
13350
|
}
|
|
13348
13351
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqUserService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13349
13352
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqUserService, providedIn: 'root' }); }
|
|
@@ -22332,62 +22335,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
|
|
|
22332
22335
|
type: Injectable
|
|
22333
22336
|
}], ctorParameters: () => [{ type: PreloaderService }] });
|
|
22334
22337
|
|
|
22335
|
-
/**
|
|
22336
|
-
* @TODO Vik TT-4883 delete?
|
|
22337
|
-
* Interceptor which adds user's basiq token to any http request to basiq api
|
|
22338
|
-
*/
|
|
22339
|
-
class BasiqTokenInterceptor {
|
|
22340
|
-
constructor() {
|
|
22341
|
-
this.basiqTokenService = inject(BasiqTokenService);
|
|
22342
|
-
}
|
|
22343
|
-
intercept(request, next) {
|
|
22344
|
-
// skip non-basiq requests
|
|
22345
|
-
if (!request.url.includes(BasiqService.basiqApiUrl)) {
|
|
22346
|
-
return next.handle(request);
|
|
22347
|
-
}
|
|
22348
|
-
// @TODO TT-4883 vik used to retrieve jobs only? do we need specific user and not first?
|
|
22349
|
-
return this.basiqTokenService.getFirst().pipe(mergeMap((token) => next.handle(this.addToken(request, token))));
|
|
22350
|
-
}
|
|
22351
|
-
addToken(request, token) {
|
|
22352
|
-
return request.clone(
|
|
22353
|
-
// { setHeaders: { Authorization: 'Bearer ' + token.value } }
|
|
22354
|
-
);
|
|
22355
|
-
}
|
|
22356
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenInterceptor, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
22357
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenInterceptor }); }
|
|
22358
|
-
}
|
|
22359
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqTokenInterceptor, decorators: [{
|
|
22360
|
-
type: Injectable
|
|
22361
|
-
}] });
|
|
22362
|
-
|
|
22363
|
-
/**
|
|
22364
|
-
* @TODO Vik TT-4883 delete?
|
|
22365
|
-
* Interceptor which check if client's basiq id exist and request it if not
|
|
22366
|
-
*/
|
|
22367
|
-
class BasiqClientIdInterceptor {
|
|
22368
|
-
constructor() {
|
|
22369
|
-
this.basiqUserService = inject(BasiqUserService);
|
|
22370
|
-
}
|
|
22371
|
-
intercept(request, next) {
|
|
22372
|
-
// Check if 'client id' URL segment contains null instead of id
|
|
22373
|
-
if (!request.url.startsWith(`${BasiqService.basiqApiUrl}/users/null`)) {
|
|
22374
|
-
return next.handle(request);
|
|
22375
|
-
}
|
|
22376
|
-
alert(request.url);
|
|
22377
|
-
return this.basiqUserService.post().pipe(mergeMap((basiqUser) => next.handle(this.addId(request, basiqUser.externalId))));
|
|
22378
|
-
}
|
|
22379
|
-
addId(request, basiqClientId) {
|
|
22380
|
-
return request.clone(
|
|
22381
|
-
// { url: request.url.replace('null', basiqClientId) }
|
|
22382
|
-
);
|
|
22383
|
-
}
|
|
22384
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqClientIdInterceptor, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
22385
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqClientIdInterceptor }); }
|
|
22386
|
-
}
|
|
22387
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: BasiqClientIdInterceptor, decorators: [{
|
|
22388
|
-
type: Injectable
|
|
22389
|
-
}] });
|
|
22390
|
-
|
|
22391
22338
|
/**
|
|
22392
22339
|
* add rewardful params to registration endpoints
|
|
22393
22340
|
* https://developers.rewardful.com/javascript-api/overview#preloading-a-referral-id
|
|
@@ -22541,16 +22488,6 @@ class InterceptorsModule {
|
|
|
22541
22488
|
useClass: PreloaderInterceptor,
|
|
22542
22489
|
multi: true
|
|
22543
22490
|
},
|
|
22544
|
-
{
|
|
22545
|
-
provide: HTTP_INTERCEPTORS,
|
|
22546
|
-
useClass: BasiqTokenInterceptor,
|
|
22547
|
-
multi: true
|
|
22548
|
-
},
|
|
22549
|
-
{
|
|
22550
|
-
provide: HTTP_INTERCEPTORS,
|
|
22551
|
-
useClass: BasiqClientIdInterceptor,
|
|
22552
|
-
multi: true
|
|
22553
|
-
},
|
|
22554
22491
|
{
|
|
22555
22492
|
provide: HTTP_INTERCEPTORS,
|
|
22556
22493
|
useClass: AdBlockErrorInterceptor,
|
|
@@ -22597,16 +22534,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
|
|
|
22597
22534
|
useClass: PreloaderInterceptor,
|
|
22598
22535
|
multi: true
|
|
22599
22536
|
},
|
|
22600
|
-
{
|
|
22601
|
-
provide: HTTP_INTERCEPTORS,
|
|
22602
|
-
useClass: BasiqTokenInterceptor,
|
|
22603
|
-
multi: true
|
|
22604
|
-
},
|
|
22605
|
-
{
|
|
22606
|
-
provide: HTTP_INTERCEPTORS,
|
|
22607
|
-
useClass: BasiqClientIdInterceptor,
|
|
22608
|
-
multi: true
|
|
22609
|
-
},
|
|
22610
22537
|
{
|
|
22611
22538
|
provide: HTTP_INTERCEPTORS,
|
|
22612
22539
|
useClass: AdBlockErrorInterceptor,
|
|
@@ -27625,5 +27552,5 @@ var MessagesEnum;
|
|
|
27625
27552
|
* Generated bundle index. Do not edit.
|
|
27626
27553
|
*/
|
|
27627
27554
|
|
|
27628
|
-
export { ADBLOCK_ERROR_HTML, ADBLOCK_ERROR_HTML_VALUE, AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockDetectorService, Address, AddressForm, AddressService, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AppPercentPipe, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AussieAppointment, AussieAppointmentForm, AussieBroker, AussieConfirmationForm, AussieService, AussieStore, AussieStoreForm, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionComment, BankTransactionCommentForm, BankTransactionCommentMessagesEnum, BankTransactionCommentService, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BasiqUser, BasiqUserService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetCollection, BudgetForm, BudgetMessagesEnum, BudgetMetadataInterface, BudgetRule, BudgetRuleCollection, BudgetRuleForm, BudgetRuleItem, BudgetRuleItemCollection, BudgetRuleService, BudgetService, BudgetTypeEnum, BusinessChartAccountsEnum, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CalendarEvent, CalendarEventCollection, CalendarEventTypeEnum, CapitalLoss, CapitalLossForm, CapitalLossMessagesEnum, CapitalLossService, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueCollection, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatFilterForm, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientCouponService, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteCollection, ClientInviteForm, ClientInviteMessages, ClientInvitePutForm, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementForm, ClientMovementMessagesEnum, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CollectionForm, CoreModule, CorelogicMessagesEnum, CorelogicService, CorelogicSuggestion, Country, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DailyFrequencyEnum, DateFormatsEnum, DateRange, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpRateEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderCollection, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EXPENSE_CATEGORY_BY_TYPE, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialGoal, FinancialGoalCollection, FinancialGoalFilterForm, FinancialGoalForm, FinancialGoalMessagesEnum, FinancialGoalService, FinancialGoalStatusEnum, FinancialGoalTypeEnum, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeReportItem, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, INCOME_CATEGORY_BY_TYPE, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, InvoiceTransactionsService, JsPdf, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, 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, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, PriorTransactionService, Property, PropertyAddForm, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareForm, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationCollection, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, REPORTS, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, 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, ServicePriceIdEnum, ServicePriceListEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SharesightDetails, SharesightDetailsMessagesEnum, SharesightDetailsService, SharesightPortfolio, SharesightPortfolioMessages, SharesightPortfolioService, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossCollection, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionCollection, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewFilterForm, TaxReviewFilterStatusEnum, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, TimezoneEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseCollection, 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, VehicleClaimDetails, VehicleClaimDetailsForm, VehicleClaimDetailsMethodEnum, VehicleClaimDetailsService, VehicleClaimForm, 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 };
|
|
27555
|
+
export { ADBLOCK_ERROR_HTML, ADBLOCK_ERROR_HTML_VALUE, AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockDetectorService, Address, AddressForm, AddressService, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AppPercentPipe, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AussieAppointment, AussieAppointmentForm, AussieBroker, AussieConfirmationForm, AussieService, AussieStore, AussieStoreForm, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionCollection, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionComment, BankTransactionCommentForm, BankTransactionCommentMessagesEnum, BankTransactionCommentService, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BasiqUser, BasiqUserService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetCollection, BudgetForm, BudgetMessagesEnum, BudgetMetadataInterface, BudgetRule, BudgetRuleCollection, BudgetRuleForm, BudgetRuleItem, BudgetRuleItemCollection, BudgetRuleService, BudgetService, BudgetTypeEnum, BusinessChartAccountsEnum, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CalendarEvent, CalendarEventCollection, CalendarEventTypeEnum, CapitalLoss, CapitalLossForm, CapitalLossMessagesEnum, CapitalLossService, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueCollection, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatFilterForm, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientCouponService, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteCollection, ClientInviteForm, ClientInviteMessages, ClientInvitePutForm, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementForm, ClientMovementMessagesEnum, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CollectionForm, CoreModule, CorelogicMessagesEnum, CorelogicService, CorelogicSuggestion, Country, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DailyFrequencyEnum, DateFormatsEnum, DateRange, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpRateEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderCollection, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EXPENSE_CATEGORY_BY_TYPE, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialGoal, FinancialGoalCollection, FinancialGoalFilterForm, FinancialGoalForm, FinancialGoalMessagesEnum, FinancialGoalService, FinancialGoalStatusEnum, FinancialGoalTypeEnum, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeReportItem, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, INCOME_CATEGORY_BY_TYPE, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, InvoiceTransactionsService, JsPdf, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, 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, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, PriorTransactionService, Property, PropertyAddForm, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareForm, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationCollection, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, REPORTS, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, 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, ServicePriceIdEnum, ServicePriceListEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SharesightDetails, SharesightDetailsMessagesEnum, SharesightDetailsService, SharesightPortfolio, SharesightPortfolioMessages, SharesightPortfolioService, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossCollection, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionCollection, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewFilterForm, TaxReviewFilterStatusEnum, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, TimezoneEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseCollection, 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, VehicleClaimDetails, VehicleClaimDetailsForm, VehicleClaimDetailsMethodEnum, VehicleClaimDetailsService, VehicleClaimForm, 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 };
|
|
27629
27556
|
//# sourceMappingURL=taxtank-core.mjs.map
|