taxtank-core 0.33.81 → 0.33.83
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/esm2022/src/lib/collections/collection.mjs +2 -2
- package/esm2022/src/lib/collections/transaction/transaction.collection.mjs +4 -6
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-list.enum.mjs +2 -1
- package/esm2022/src/lib/db/Models/client/client-details.mjs +1 -1
- package/esm2022/src/lib/forms/holding/holding-trade/holding-trade.form.mjs +2 -2
- package/esm2022/src/lib/interceptors/aussie.interceptor.mjs +35 -0
- package/esm2022/src/lib/interceptors/interceptors.module.mjs +12 -1
- package/esm2022/src/lib/models/aussie/aussie-store.interface.mjs +2 -0
- package/esm2022/src/lib/models/aussie/aussie-store.mjs +4 -0
- package/esm2022/src/lib/models/aussie/index.mjs +3 -0
- package/esm2022/src/lib/models/client/client-details.mjs +4 -1
- package/esm2022/src/lib/models/index.mjs +2 -1
- package/esm2022/src/lib/models/report/vehicle-expense/vehicle-expense.mjs +2 -4
- package/esm2022/src/lib/models/transaction/transaction.mjs +3 -2
- package/esm2022/src/lib/models/vehicle/vehicle-claim.mjs +3 -2
- package/esm2022/src/lib/services/http/aussie/aussie-store.service.mjs +26 -0
- package/esm2022/src/lib/services/http/aussie/aussie.service.mjs +56 -0
- package/esm2022/src/lib/services/http/aussie/index.mjs +3 -0
- package/esm2022/src/lib/services/http/firm/client-invite/client-invite.service.mjs +5 -14
- package/esm2022/src/lib/services/http/holding/holding-type.service.mjs +1 -2
- package/esm2022/src/lib/services/http/index.mjs +2 -1
- package/esm2022/src/lib/services/http/property/property.service.mjs +4 -1
- package/esm2022/src/lib/services/http/rest/http-error-messages.const.mjs +2 -2
- package/esm2022/src/lib/services/http/rest/rest.service.mjs +11 -2
- package/esm2022/src/lib/services/http/user/user.service.mjs +4 -4
- package/fesm2022/taxtank-core.mjs +151 -30
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/db/Enums/chart-accounts/chart-accounts-list.enum.d.ts +1 -0
- package/src/lib/db/Models/client/client-details.d.ts +1 -0
- package/src/lib/interceptors/aussie.interceptor.d.ts +16 -0
- package/src/lib/models/aussie/aussie-store.d.ts +15 -0
- package/src/lib/models/aussie/aussie-store.interface.d.ts +13 -0
- package/src/lib/models/aussie/index.d.ts +2 -0
- package/src/lib/models/client/client-details.d.ts +1 -0
- package/src/lib/models/index.d.ts +1 -0
- package/src/lib/models/report/vehicle-expense/vehicle-expense.d.ts +1 -1
- package/src/lib/services/http/aussie/aussie-store.service.d.ts +15 -0
- package/src/lib/services/http/aussie/aussie.service.d.ts +17 -0
- package/src/lib/services/http/aussie/index.d.ts +2 -0
- package/src/lib/services/http/firm/client-invite/client-invite.service.d.ts +1 -0
- package/src/lib/services/http/index.d.ts +1 -0
- package/src/lib/services/http/property/property.service.d.ts +1 -0
- package/src/lib/services/http/rest/rest.service.d.ts +1 -0
- package/src/lib/services/http/user/user.service.d.ts +4 -1
@@ -1026,6 +1026,7 @@ var ChartAccountsListEnum;
|
|
1026
1026
|
ChartAccountsListEnum[ChartAccountsListEnum["FORESTRY_MANAGED_INVESTMENT_SCHEMES_DEDUCTION"] = 593] = "FORESTRY_MANAGED_INVESTMENT_SCHEMES_DEDUCTION";
|
1027
1027
|
ChartAccountsListEnum[ChartAccountsListEnum["ASSESSABLE_AMOUNT_CAPPED_DEFINED_BENEFIT"] = 639] = "ASSESSABLE_AMOUNT_CAPPED_DEFINED_BENEFIT";
|
1028
1028
|
ChartAccountsListEnum[ChartAccountsListEnum["CODE_A_SUPERANNUATION_INCOME_STREAMS_DEATH"] = 640] = "CODE_A_SUPERANNUATION_INCOME_STREAMS_DEATH";
|
1029
|
+
ChartAccountsListEnum[ChartAccountsListEnum["PRE_TAX_DEDUCTIONS_OTHER"] = 645] = "PRE_TAX_DEDUCTIONS_OTHER";
|
1029
1030
|
ChartAccountsListEnum[ChartAccountsListEnum["TRANSFER"] = 615] = "TRANSFER";
|
1030
1031
|
ChartAccountsListEnum[ChartAccountsListEnum["PERSONAL_EXPENSES"] = 628] = "PERSONAL_EXPENSES";
|
1031
1032
|
ChartAccountsListEnum[ChartAccountsListEnum["PERSONAL_INCOME"] = 630] = "PERSONAL_INCOME";
|
@@ -1835,7 +1836,7 @@ class Collection {
|
|
1835
1836
|
return [...this.items];
|
1836
1837
|
}
|
1837
1838
|
get first() {
|
1838
|
-
return first(this.items);
|
1839
|
+
return first(this.items) ?? null;
|
1839
1840
|
}
|
1840
1841
|
get last() {
|
1841
1842
|
return last(this.items);
|
@@ -4107,6 +4108,9 @@ class ClientDetails extends ClientDetails$1 {
|
|
4107
4108
|
isBasiqConsentExpired() {
|
4108
4109
|
return this.basiqConsentExpiryDate && new Date() >= this.basiqConsentExpiryDate;
|
4109
4110
|
}
|
4111
|
+
sharesightDisconnected() {
|
4112
|
+
return this.sharesightAccessToken && !this.sharesightRefreshToken;
|
4113
|
+
}
|
4110
4114
|
}
|
4111
4115
|
__decorate([
|
4112
4116
|
Type(() => Date)
|
@@ -5125,9 +5129,10 @@ class VehicleClaim extends VehicleClaim$1 {
|
|
5125
5129
|
const transactionsAmount = transactions
|
5126
5130
|
.getByVehicleClaim(this)
|
5127
5131
|
.getLogbookTransactions()
|
5132
|
+
.getTaxable()
|
5128
5133
|
.sumBy('amount');
|
5129
5134
|
// Math.abs because amount will be negative (because we sum expenses), but we don't want negative percent value
|
5130
|
-
return Math.abs(transactionsAmount) * this.workUsage / 100;
|
5135
|
+
return Math.abs(transactionsAmount) * (this.workUsage / 100);
|
5131
5136
|
}
|
5132
5137
|
getAverageWeeklyKMS() {
|
5133
5138
|
return this.kilometers / FinancialYear.weeksInYear;
|
@@ -6430,7 +6435,8 @@ class Transaction extends Transaction$1 {
|
|
6430
6435
|
}
|
6431
6436
|
// included transactions affect parent transaction amount and as a result grossAmount, skip to avoid double sum
|
6432
6437
|
const adjustments = new Collection(this.transactions)
|
6433
|
-
|
6438
|
+
// @TODO move to enum when there are other exceptions
|
6439
|
+
.filter(transaction => !transaction.chartAccounts?.isAdjustmentIncluded() && transaction.chartAccounts?.id !== ChartAccountsListEnum.PRE_TAX_DEDUCTIONS_OTHER);
|
6434
6440
|
const income = adjustments.filter(transaction => transaction.isIncome()).sumBy('amount');
|
6435
6441
|
const expense = adjustments.filter(transaction => transaction.isExpense()).sumBy('amount', true);
|
6436
6442
|
// all adjustments except property income increase grossIncome
|
@@ -7020,11 +7026,9 @@ class TransactionCollection extends TransactionBaseCollection {
|
|
7020
7026
|
if (!vehicleClaim) {
|
7021
7027
|
return this.create([]);
|
7022
7028
|
}
|
7023
|
-
return
|
7024
|
-
|
7025
|
-
|
7026
|
-
// work tank may have only one vehicle claim, so we need to filter by tank type
|
7027
|
-
: this.getVehicleTransactions().filterBy('tankType', TankTypeEnum.WORK);
|
7029
|
+
return this.getVehicleTransactions()
|
7030
|
+
.filterBy('tankType', vehicleClaim.tankType)
|
7031
|
+
.filterBy('business.id', vehicleClaim.business.id);
|
7028
7032
|
}
|
7029
7033
|
/**
|
7030
7034
|
* Get list of vehicle transactions except KMS transactions
|
@@ -8056,11 +8060,9 @@ class VehicleExpense extends AbstractModel {
|
|
8056
8060
|
super();
|
8057
8061
|
this.amount = amount;
|
8058
8062
|
this.claimPercent = claimPercent;
|
8063
|
+
this.claimAmount = round(this.amount * this.claimPercent / 100, 2);
|
8059
8064
|
this.description = description;
|
8060
8065
|
}
|
8061
|
-
getClaimAmount() {
|
8062
|
-
return round(this.amount * (this.claimPercent / 100), 2);
|
8063
|
-
}
|
8064
8066
|
}
|
8065
8067
|
|
8066
8068
|
const REPORTS = {
|
@@ -10898,6 +10900,9 @@ __decorate([
|
|
10898
10900
|
Type(() => SoleBusiness)
|
10899
10901
|
], HomeOfficeLog.prototype, "business", void 0);
|
10900
10902
|
|
10903
|
+
class AussieStore extends AbstractModel {
|
10904
|
+
}
|
10905
|
+
|
10901
10906
|
var CorelogicMessagesEnum;
|
10902
10907
|
(function (CorelogicMessagesEnum) {
|
10903
10908
|
CorelogicMessagesEnum["SERVICE_UNAVAILABLE"] = "Corelogic service is temporary unavailable, please try again in a few minutes.";
|
@@ -11321,7 +11326,7 @@ const HTTP_ERROR_MESSAGES = {
|
|
11321
11326
|
405: 'Method Not Allowed – The request method is not supported by the server. Please, connect with technical support',
|
11322
11327
|
408: 'Request Timeout – The request took too long to complete. Please try again.',
|
11323
11328
|
429: 'Too Many Requests – Too many requests were made. Please wait and try again later.',
|
11324
|
-
500: '
|
11329
|
+
500: 'Oops! Something went wrong. Please try again in a moment, or contact support if the issue keeps happening.',
|
11325
11330
|
502: 'Bad Gateway – The server received an invalid response. Please try again.',
|
11326
11331
|
503: 'Service Unavailable – The server is currently unavailable. Please try again later.',
|
11327
11332
|
504: 'Gateway Timeout – The server timed out waiting for a response. Please try again.'
|
@@ -11404,6 +11409,10 @@ let RestService$1 = class RestService extends DataService {
|
|
11404
11409
|
return this.createCollectionInstance(this.collectionClass, response);
|
11405
11410
|
}), catchError((error) => this.handleError(error)));
|
11406
11411
|
}
|
11412
|
+
fetchFirst(queryParams = {}) {
|
11413
|
+
return this.fetch(this.apiUrl, false, { params: queryParams })
|
11414
|
+
.pipe(map((collection) => collection.first));
|
11415
|
+
}
|
11407
11416
|
get(path = this.apiUrl) {
|
11408
11417
|
this.handleAccessError('get');
|
11409
11418
|
if (!this.hasRoles()) {
|
@@ -11536,7 +11545,12 @@ let RestService$1 = class RestService extends DataService {
|
|
11536
11545
|
handleError(error) {
|
11537
11546
|
if (error instanceof HttpErrorResponse) {
|
11538
11547
|
if (this.useBackendError) {
|
11539
|
-
|
11548
|
+
if (error.error.detail) {
|
11549
|
+
this.toastService.error(error.error.detail);
|
11550
|
+
}
|
11551
|
+
else {
|
11552
|
+
this.toastService.error(error.error.map((error) => error.message).join(' '));
|
11553
|
+
}
|
11540
11554
|
}
|
11541
11555
|
else {
|
11542
11556
|
this.toastService.error(this.httpErrorMessages[error.status] || 'Unexpected error occurred.');
|
@@ -12831,6 +12845,7 @@ class ClientInviteService extends RestService$1 {
|
|
12831
12845
|
this.endpointUri = 'client-invites';
|
12832
12846
|
this.collectionClass = ClientInviteCollection;
|
12833
12847
|
this.modelClass = ClientInvite;
|
12848
|
+
this.useBackendError = true;
|
12834
12849
|
this.listenEvents();
|
12835
12850
|
}
|
12836
12851
|
listenEvents() {
|
@@ -12862,7 +12877,7 @@ class ClientInviteService extends RestService$1 {
|
|
12862
12877
|
// TaxReviewService is listening client invites acception. With the new rest we are using listenCSE method, but old rest does not have this method.
|
12863
12878
|
// We need to refactor TaxReviewService with new rest first, then we can listenCSE and remove manual events
|
12864
12879
|
this.eventDispatcherService.dispatch(new AppEvent(AppEventTypeEnum.CLIENT_INVITE_ACCEPTED, null));
|
12865
|
-
|
12880
|
+
this.handleResponse([invite], 'delete');
|
12866
12881
|
}));
|
12867
12882
|
}
|
12868
12883
|
/**
|
@@ -12887,16 +12902,7 @@ class ClientInviteService extends RestService$1 {
|
|
12887
12902
|
* Send invitation from client to firm
|
12888
12903
|
*/
|
12889
12904
|
inviteFirmByUser(invite) {
|
12890
|
-
return super.post(invite, `${this.environment.apiV2}/firm-invites`)
|
12891
|
-
.pipe(catchError((error) => {
|
12892
|
-
if (error.error.email) {
|
12893
|
-
this.toastService.error(error.error.email[0]);
|
12894
|
-
}
|
12895
|
-
else {
|
12896
|
-
this.toastService.error(error.error);
|
12897
|
-
}
|
12898
|
-
return throwError(error);
|
12899
|
-
}));
|
12905
|
+
return super.post(invite, `${this.environment.apiV2}/firm-invites`);
|
12900
12906
|
}
|
12901
12907
|
listenNotifications() {
|
12902
12908
|
this.eventDispatcherService.on(AppEventTypeEnum.NOTIFICATION_ADDED).subscribe((notification) => {
|
@@ -14384,6 +14390,9 @@ class PropertyService extends RestService$1 {
|
|
14384
14390
|
return throwError(() => error);
|
14385
14391
|
}));
|
14386
14392
|
}
|
14393
|
+
getCorelogicStats(property) {
|
14394
|
+
return this.http.get(`${this.apiUrl}/${property.id}/corelogic-stats`);
|
14395
|
+
}
|
14387
14396
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PropertyService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14388
14397
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
|
14389
14398
|
}
|
@@ -16351,10 +16360,10 @@ class UserService extends RestService$1 {
|
|
16351
16360
|
}));
|
16352
16361
|
}
|
16353
16362
|
connectSharesight(code) {
|
16354
|
-
return this.http.post(`${this.environment.apiV2}/sharesight/connect`, { code }).pipe(map((
|
16355
|
-
this.
|
16363
|
+
return this.http.post(`${this.environment.apiV2}/sharesight/connect`, { code }).pipe(map((result) => {
|
16364
|
+
this.setCache([Object.assign(this.getCacheFirst(), result)], true);
|
16356
16365
|
this.toastService.success(UserMessagesEnum.SHARESIGHT_CONNECTED);
|
16357
|
-
return
|
16366
|
+
return result;
|
16358
16367
|
}), catchError((error) => {
|
16359
16368
|
if (error.status === 503) {
|
16360
16369
|
this.toastService.error(UserMessagesEnum.SHARESIGHT_ERROR);
|
@@ -16474,7 +16483,6 @@ class HoldingTypeService extends RestService$1 {
|
|
16474
16483
|
}
|
16475
16484
|
listenEvents() {
|
16476
16485
|
this.listenCSE(HoldingTrade, (trades) => this.hasInCache(trades[0].holdingType.id) ? '' : this.updateCache([trades[0].holdingType], 'post'), ['post']);
|
16477
|
-
this.listenCSE(HoldingTrade, (trades) => this.updateCache([trades[0].holdingType], 'put'), ['put']);
|
16478
16486
|
this.listenCSE(HoldingTradeImport, this.refreshCache, ['post']);
|
16479
16487
|
}
|
16480
16488
|
listenNotifications() {
|
@@ -16751,6 +16759,77 @@ var RestMessagesEnum;
|
|
16751
16759
|
RestMessagesEnum["DELETE"] = "Deleted";
|
16752
16760
|
})(RestMessagesEnum || (RestMessagesEnum = {}));
|
16753
16761
|
|
16762
|
+
/**
|
16763
|
+
* Service to work with aussie api
|
16764
|
+
* https://baas.lendi-paas-stg.net/playground
|
16765
|
+
*/
|
16766
|
+
class AussieService {
|
16767
|
+
constructor(http, environment) {
|
16768
|
+
this.http = http;
|
16769
|
+
this.environment = environment;
|
16770
|
+
}
|
16771
|
+
getAvailability(brokerId) {
|
16772
|
+
// return this.http.get(
|
16773
|
+
// `${this.environment.aussieUrl}/appointments/availability/next/${brokerId}`,
|
16774
|
+
// { params: { brand: 'aussie', days: 28 } }
|
16775
|
+
// )
|
16776
|
+
return of({ 'metadata': {}, 'data': { 'Video': { 'availability': [{ 'datetime': '2025-01-30T08:00:00.000Z', 'brokerIds': ['19407b17-24b0-4000-8b3e-3adf93721301'] }, { 'datetime': '2025-01-30T08:15:00.000Z', 'brokerIds': ['19407b17-24b0-4000-8b3e-3adf93721301'] }, { 'datetime': '2025-01-30T08:30:00.000Z', 'brokerIds': ['19407b17-24b0-4000-8b3e-3adf93721301'] }, { 'datetime': '2025-01-30T08:45:00.000Z', 'brokerIds': ['19407b17-24b0-4000-8b3e-3adf93721301'] }, { 'datetime': '2025-01-30T08:00:00.000Z', 'brokerIds': ['19407b17-24b0-4000-8b3e-3adf93721301'] }, { 'datetime': '2025-01-30T08:15:00.000Z', 'brokerIds': ['19407b17-24b0-4000-8b3e-3adf93721301'] }, { 'datetime': '2025-01-30T08:30:00.000Z', 'brokerIds': ['19407b17-24b0-4000-8b3e-3adf93721301'] }, { 'datetime': '2025-01-30T08:45:00.000Z', 'brokerIds': ['19407b17-24b0-4000-8b3e-3adf93721301'] }], 'nextAvailableTimeslot': '1970-01-01T00:00:00.000Z' } } })
|
16777
|
+
.pipe(map((response) => {
|
16778
|
+
const dates = response.data.Video.availability.map(availability => new Date(availability.datetime));
|
16779
|
+
return this.get30MinuteSlotsGroupedByDay(dates);
|
16780
|
+
}));
|
16781
|
+
}
|
16782
|
+
get30MinuteSlotsGroupedByDay(dates) {
|
16783
|
+
const groupedSlots = {};
|
16784
|
+
for (let i = 0; i < dates.length - 1; i++) {
|
16785
|
+
const start = dates[i];
|
16786
|
+
const end = new Date(start.getTime() + 30 * 60 * 1000);
|
16787
|
+
// Verify that all 15-minute intervals within this 30-minute range exist
|
16788
|
+
if (dates.some(date => date.getTime() === end.getTime())) {
|
16789
|
+
const dayKey = start.toISOString().split('T')[0];
|
16790
|
+
if (!groupedSlots[dayKey]) {
|
16791
|
+
groupedSlots[dayKey] = [];
|
16792
|
+
}
|
16793
|
+
groupedSlots[dayKey].push(new DateRange(start, end));
|
16794
|
+
}
|
16795
|
+
}
|
16796
|
+
console.log(groupedSlots);
|
16797
|
+
return groupedSlots;
|
16798
|
+
}
|
16799
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16800
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieService, providedIn: 'root' }); }
|
16801
|
+
}
|
16802
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieService, decorators: [{
|
16803
|
+
type: Injectable,
|
16804
|
+
args: [{
|
16805
|
+
providedIn: 'root'
|
16806
|
+
}]
|
16807
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
16808
|
+
type: Inject,
|
16809
|
+
args: ['environment']
|
16810
|
+
}] }] });
|
16811
|
+
|
16812
|
+
/**
|
16813
|
+
* Service that handling banks logic
|
16814
|
+
*/
|
16815
|
+
class AussieStoreService extends RestService$1 {
|
16816
|
+
constructor() {
|
16817
|
+
super(...arguments);
|
16818
|
+
this.modelClass = AussieStore;
|
16819
|
+
this.collectionClass = Collection;
|
16820
|
+
this.endpointUri = 'aussie/stores';
|
16821
|
+
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
16822
|
+
}
|
16823
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieStoreService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16824
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieStoreService, providedIn: 'root' }); }
|
16825
|
+
}
|
16826
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieStoreService, decorators: [{
|
16827
|
+
type: Injectable,
|
16828
|
+
args: [{
|
16829
|
+
providedIn: 'root'
|
16830
|
+
}]
|
16831
|
+
}] });
|
16832
|
+
|
16754
16833
|
var IncomeSourceTypes = [
|
16755
16834
|
{
|
16756
16835
|
id: 11,
|
@@ -20430,6 +20509,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
20430
20509
|
args: ['environment']
|
20431
20510
|
}] }] });
|
20432
20511
|
|
20512
|
+
/**
|
20513
|
+
* Aussie interceptor add x-api-key and Bearer
|
20514
|
+
*/
|
20515
|
+
class AussieInterceptor {
|
20516
|
+
constructor(aussieService, environment) {
|
20517
|
+
this.aussieService = aussieService;
|
20518
|
+
this.environment = environment;
|
20519
|
+
}
|
20520
|
+
intercept(request, next) {
|
20521
|
+
// skip non-aussie requests
|
20522
|
+
if (!request.url.includes(this.environment.aussieUrl)) {
|
20523
|
+
return next.handle(request);
|
20524
|
+
}
|
20525
|
+
return next.handle(this.addKey(request));
|
20526
|
+
}
|
20527
|
+
addKey(request) {
|
20528
|
+
return request.clone({
|
20529
|
+
setHeaders: {
|
20530
|
+
'x-api-key': this.environment.aussieKey
|
20531
|
+
}
|
20532
|
+
});
|
20533
|
+
}
|
20534
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieInterceptor, deps: [{ token: AussieService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20535
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieInterceptor }); }
|
20536
|
+
}
|
20537
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieInterceptor, decorators: [{
|
20538
|
+
type: Injectable
|
20539
|
+
}], ctorParameters: () => [{ type: AussieService }, { type: undefined, decorators: [{
|
20540
|
+
type: Inject,
|
20541
|
+
args: ['environment']
|
20542
|
+
}] }] });
|
20543
|
+
|
20433
20544
|
class InterceptorsModule {
|
20434
20545
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
20435
20546
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: InterceptorsModule }); }
|
@@ -20439,6 +20550,11 @@ class InterceptorsModule {
|
|
20439
20550
|
useClass: CorelogicInterceptor,
|
20440
20551
|
multi: true
|
20441
20552
|
},
|
20553
|
+
{
|
20554
|
+
provide: HTTP_INTERCEPTORS,
|
20555
|
+
useClass: AussieInterceptor,
|
20556
|
+
multi: true
|
20557
|
+
},
|
20442
20558
|
// @TODO move to user module
|
20443
20559
|
{
|
20444
20560
|
provide: HTTP_INTERCEPTORS,
|
@@ -20481,6 +20597,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
20481
20597
|
useClass: CorelogicInterceptor,
|
20482
20598
|
multi: true
|
20483
20599
|
},
|
20600
|
+
{
|
20601
|
+
provide: HTTP_INTERCEPTORS,
|
20602
|
+
useClass: AussieInterceptor,
|
20603
|
+
multi: true
|
20604
|
+
},
|
20484
20605
|
// @TODO move to user module
|
20485
20606
|
{
|
20486
20607
|
provide: HTTP_INTERCEPTORS,
|
@@ -24608,7 +24729,7 @@ class HoldingTradeForm extends AbstractForm {
|
|
24608
24729
|
price: new UntypedFormControl(holdingTrade.price, [Validators.required, Validators.min(0)]),
|
24609
24730
|
fee: new UntypedFormControl(holdingTrade.fee, [Validators.required, Validators.min(0)]),
|
24610
24731
|
date: new UntypedFormControl(holdingTrade.date, Validators.required),
|
24611
|
-
holdingType: new UntypedFormControl(holdingTrade.holdingType, Validators.required),
|
24732
|
+
holdingType: new UntypedFormControl({ value: holdingTrade.holdingType, disabled: !!holdingTrade.id }, Validators.required),
|
24612
24733
|
ownershipPercent: new UntypedFormControl(holdingTrade.ownershipPercent || 100, Validators.required),
|
24613
24734
|
file: new UntypedFormControl(holdingTrade.file)
|
24614
24735
|
}, holdingTrade);
|
@@ -24973,5 +25094,5 @@ var MessagesEnum;
|
|
24973
25094
|
* Generated bundle index. Do not edit.
|
24974
25095
|
*/
|
24975
25096
|
|
24976
|
-
export { AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupService, 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, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, 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, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetForm, BudgetMessagesEnum, BudgetRule, BudgetService, BusinessChartAccountsEnum, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CapitalLoss, CapitalLossForm, CapitalLossMessagesEnum, CapitalLossService, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueCollection, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatFilterForm, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientCouponService, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteCollection, ClientInviteForm, ClientInviteMessages, ClientInvitePutForm, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementForm, ClientMovementMessagesEnum, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CollectionForm, CoreModule, CorelogicMessagesEnum, CorelogicService, CorelogicSuggestion, Country, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, 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, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, JsPdf, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanFrequencyEnum, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, 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, PropertyDocument, PropertyDocumentForm, PropertyDocumentMessagesEnum, PropertyDocumentService, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareForm, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationCollection, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, REPORTS, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestMessagesEnum, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceListEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossCollection, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionCollection, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewFilterForm, TaxReviewFilterStatusEnum, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, TimezoneEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseCollection, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReportItem, TransactionReportItemCollection, TransactionService, TransactionSourceEnum, TransactionTypeEnum, 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, alphaSpaceValidator, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
|
25097
|
+
export { AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupService, 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, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AussieService, AussieStore, AussieStoreService, 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, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetForm, BudgetMessagesEnum, BudgetRule, BudgetService, BusinessChartAccountsEnum, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CapitalLoss, CapitalLossForm, CapitalLossMessagesEnum, CapitalLossService, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueCollection, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatFilterForm, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientCouponService, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteCollection, ClientInviteForm, ClientInviteMessages, ClientInvitePutForm, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementForm, ClientMovementMessagesEnum, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CollectionForm, CoreModule, CorelogicMessagesEnum, CorelogicService, CorelogicSuggestion, Country, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, 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, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, JsPdf, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanFrequencyEnum, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, 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, PropertyDocument, PropertyDocumentForm, PropertyDocumentMessagesEnum, PropertyDocumentService, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareForm, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationCollection, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, REPORTS, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestMessagesEnum, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceListEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossCollection, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionCollection, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewFilterForm, TaxReviewFilterStatusEnum, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, TimezoneEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseCollection, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReportItem, TransactionReportItemCollection, TransactionService, TransactionSourceEnum, TransactionTypeEnum, 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, alphaSpaceValidator, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
|
24977
25098
|
//# sourceMappingURL=taxtank-core.mjs.map
|