taxtank-core 0.31.30 → 0.31.32

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.
@@ -1,7 +1,7 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Injectable, Inject, inject, EventEmitter, NgModule } from '@angular/core';
2
+ import { Injectable, Inject, inject, EventEmitter, NgModule, Pipe } from '@angular/core';
3
3
  import * as i1$1 from '@angular/common';
4
- import { CommonModule, DatePipe } from '@angular/common';
4
+ import { CommonModule, CurrencyPipe, DatePipe } from '@angular/common';
5
5
  import * as i1 from '@angular/common/http';
6
6
  import { HttpParams, HttpErrorResponse, HTTP_INTERCEPTORS } from '@angular/common/http';
7
7
  import { map, mergeMap, filter, first as first$1, catchError, skip, take, switchMap, finalize, debounceTime, distinctUntilChanged, delay } from 'rxjs/operators';
@@ -21,6 +21,7 @@ import differenceBy from 'lodash/differenceBy';
21
21
  import uniq from 'lodash/uniq';
22
22
  import moment from 'moment';
23
23
  import { DateRange } from 'moment-range';
24
+ import merge from 'lodash/merge';
24
25
  import range from 'lodash/range';
25
26
  import { Validators, UntypedFormGroup, UntypedFormControl, UntypedFormArray, FormControl, FormArray, FormGroup } from '@angular/forms';
26
27
  import compact from 'lodash/compact';
@@ -33,8 +34,6 @@ import { JwtHelperService } from '@auth0/angular-jwt';
33
34
  import * as i4 from '@angular/router';
34
35
  import { NavigationEnd } from '@angular/router';
35
36
  import _ from 'lodash';
36
- import { throwError as throwError$1 } from 'rxjs/internal/observable/throwError';
37
- import merge from 'lodash/merge';
38
37
  import { loadStripe } from '@stripe/stripe-js';
39
38
  import { jsPDF } from 'jspdf';
40
39
  import { applyPlugin } from 'jspdf-autotable';
@@ -3551,11 +3550,47 @@ __decorate([
3551
3550
  Type(() => Date)
3552
3551
  ], IncomeSource.prototype, "dateTo", void 0);
3553
3552
 
3554
- var TransactionSourceEnum;
3555
- (function (TransactionSourceEnum) {
3556
- TransactionSourceEnum[TransactionSourceEnum["CASH"] = 1] = "CASH";
3557
- TransactionSourceEnum[TransactionSourceEnum["BANK_TRANSACTION"] = 2] = "BANK_TRANSACTION";
3558
- })(TransactionSourceEnum || (TransactionSourceEnum = {}));
3553
+ /**
3554
+ * Income sources chart data
3555
+ */
3556
+ class IncomeSourceChartData {
3557
+ constructor(forecastedIncomeAmount, transactions) {
3558
+ this.forecastedIncomeAmount = forecastedIncomeAmount;
3559
+ this.transactions = transactions;
3560
+ }
3561
+ /**
3562
+ * Get prepared data for income sources chart
3563
+ */
3564
+ get() {
3565
+ const chartData = [{
3566
+ id: 'actualIncome',
3567
+ name: 'Actual Income',
3568
+ data: [],
3569
+ // display future actual incomes with dash line and past actual incomes with solid line
3570
+ zones: [{
3571
+ // line style after current month
3572
+ value: new FinancialYear().getMonthDate(new Date().getMonth()).getTime(),
3573
+ dashStyle: 'Solid'
3574
+ }, {
3575
+ // default line style
3576
+ dashStyle: 'Dash'
3577
+ }]
3578
+ }, {
3579
+ id: 'forecastedIncome',
3580
+ name: 'Forecasted Income',
3581
+ data: [],
3582
+ }];
3583
+ for (const key in MonthNameShortEnum) {
3584
+ if (MonthNameShortEnum.hasOwnProperty(key)) {
3585
+ // transaction collection for provided month
3586
+ const monthTransactionCollection = this.transactions.getByMonth(+MonthNumberEnum[key]);
3587
+ chartData[0].data.push([new FinancialYear().getMonthDate(+MonthNumberEnum[key]).getTime(), monthTransactionCollection.amount]);
3588
+ chartData[1].data.push([new FinancialYear().getMonthDate(+MonthNumberEnum[key]).getTime(), this.forecastedIncomeAmount / 12]);
3589
+ }
3590
+ }
3591
+ return chartData;
3592
+ }
3593
+ }
3559
3594
 
3560
3595
  class AllocationRuleTransaction extends AllocationRuleTransaction$1 {
3561
3596
  constructor() {
@@ -3581,15 +3616,9 @@ class AllocationRuleTransaction extends AllocationRuleTransaction$1 {
3581
3616
  * Create Transaction instance based on passed bank transaction and rule transaction
3582
3617
  */
3583
3618
  toTransaction(bankTransaction) {
3584
- return plainToClass(Transaction, {
3585
- amount: bankTransaction.amount,
3586
- description: bankTransaction.description,
3587
- type: bankTransaction.type,
3588
- date: bankTransaction.date,
3589
- source: TransactionSourceEnum.BANK_TRANSACTION,
3619
+ const transaction = merge(bankTransaction.toTransaction(this.isGST), {
3590
3620
  tax: this.tax,
3591
3621
  claimPercent: this.claimPercent,
3592
- isGST: this.isGST,
3593
3622
  chartAccounts: this.chartAccounts,
3594
3623
  property: this.property,
3595
3624
  loan: this.loan,
@@ -3599,8 +3628,9 @@ class AllocationRuleTransaction extends AllocationRuleTransaction$1 {
3599
3628
  childTransactions: this.childTransactions,
3600
3629
  business: this.business,
3601
3630
  operation: TransactionOperationEnum.ALLOCATE,
3602
- allocations: [TransactionAllocation.create(bankTransaction.amount, bankTransaction)],
3603
3631
  });
3632
+ transaction.allocations = [TransactionAllocation.create(transaction.amountWithGst, bankTransaction)];
3633
+ return transaction;
3604
3634
  }
3605
3635
  }
3606
3636
  __decorate([
@@ -3773,6 +3803,12 @@ var TransactionTypeEnum;
3773
3803
  TransactionTypeEnum[TransactionTypeEnum["CREDIT"] = 2] = "CREDIT";
3774
3804
  })(TransactionTypeEnum || (TransactionTypeEnum = {}));
3775
3805
 
3806
+ var TransactionSourceEnum;
3807
+ (function (TransactionSourceEnum) {
3808
+ TransactionSourceEnum[TransactionSourceEnum["CASH"] = 1] = "CASH";
3809
+ TransactionSourceEnum[TransactionSourceEnum["BANK_TRANSACTION"] = 2] = "BANK_TRANSACTION";
3810
+ })(TransactionSourceEnum || (TransactionSourceEnum = {}));
3811
+
3776
3812
  var TaxExemptionEnum;
3777
3813
  (function (TaxExemptionEnum) {
3778
3814
  TaxExemptionEnum[TaxExemptionEnum["ONE_YEAR_RULE"] = 1] = "ONE_YEAR_RULE";
@@ -5046,48 +5082,6 @@ var DepreciationLvpRateEnum;
5046
5082
  DepreciationLvpRateEnum[DepreciationLvpRateEnum["DEFAULT"] = 0.375] = "DEFAULT";
5047
5083
  })(DepreciationLvpRateEnum || (DepreciationLvpRateEnum = {}));
5048
5084
 
5049
- /**
5050
- * Income sources chart data
5051
- */
5052
- class IncomeSourceChartData {
5053
- constructor(forecastedIncomeAmount, transactions) {
5054
- this.forecastedIncomeAmount = forecastedIncomeAmount;
5055
- this.transactions = transactions;
5056
- }
5057
- /**
5058
- * Get prepared data for income sources chart
5059
- */
5060
- get() {
5061
- const chartData = [{
5062
- id: 'actualIncome',
5063
- name: 'Actual Income',
5064
- data: [],
5065
- // display future actual incomes with dash line and past actual incomes with solid line
5066
- zones: [{
5067
- // line style after current month
5068
- value: new FinancialYear().getMonthDate(new Date().getMonth()).getTime(),
5069
- dashStyle: 'Solid'
5070
- }, {
5071
- // default line style
5072
- dashStyle: 'Dash'
5073
- }]
5074
- }, {
5075
- id: 'forecastedIncome',
5076
- name: 'Forecasted Income',
5077
- data: [],
5078
- }];
5079
- for (const key in MonthNameShortEnum) {
5080
- if (MonthNameShortEnum.hasOwnProperty(key)) {
5081
- // transaction collection for provided month
5082
- const monthTransactionCollection = this.transactions.getByMonth(+MonthNumberEnum[key]);
5083
- chartData[0].data.push([new FinancialYear().getMonthDate(+MonthNumberEnum[key]).getTime(), monthTransactionCollection.amount]);
5084
- chartData[1].data.push([new FinancialYear().getMonthDate(+MonthNumberEnum[key]).getTime(), this.forecastedIncomeAmount / 12]);
5085
- }
5086
- }
5087
- return chartData;
5088
- }
5089
- }
5090
-
5091
5085
  class SoleBusiness extends SoleBusiness$1 {
5092
5086
  }
5093
5087
  /**
@@ -6138,15 +6132,21 @@ class BankTransaction extends BankTransaction$1 {
6138
6132
  /**
6139
6133
  * Create Transaction instance based on Bank Transaction
6140
6134
  */
6141
- toTransaction() {
6142
- return plainToClass(Transaction, {
6143
- amount: this.amount,
6135
+ toTransaction(isGST = false, allocations = new TransactionAllocationCollection([])) {
6136
+ const transaction = plainToClass(Transaction, {
6137
+ amount: this.getUnallocatedAmount(allocations),
6144
6138
  description: this.description,
6139
+ type: this.type,
6145
6140
  date: this.date,
6146
6141
  source: TransactionSourceEnum.BANK_TRANSACTION,
6147
6142
  operation: this.operation,
6148
- type: this.type,
6143
+ isGST: isGST,
6149
6144
  });
6145
+ // gst should be included
6146
+ if (isGST) {
6147
+ transaction.amount = transaction.amount / ChartAccounts.GSTCoefficient;
6148
+ }
6149
+ return transaction;
6150
6150
  }
6151
6151
  /**
6152
6152
  * Check if bank transaction is completely allocated
@@ -10548,6 +10548,9 @@ let RestService$1 = class RestService extends DataService {
10548
10548
  const result = this.createModelInstance(response);
10549
10549
  this.handleResponse([result], 'post');
10550
10550
  return result;
10551
+ }), catchError((error) => {
10552
+ this.handleResponseError([model], 'post');
10553
+ return throwError(error);
10551
10554
  }));
10552
10555
  }
10553
10556
  /**
@@ -10560,6 +10563,9 @@ let RestService$1 = class RestService extends DataService {
10560
10563
  const result = response.map((item) => this.createModelInstance(item));
10561
10564
  this.handleResponse(result, 'post');
10562
10565
  return result;
10566
+ }), catchError((error) => {
10567
+ this.handleResponseError(models, 'post');
10568
+ return throwError(error);
10563
10569
  }));
10564
10570
  }
10565
10571
  /**
@@ -10572,6 +10578,9 @@ let RestService$1 = class RestService extends DataService {
10572
10578
  const result = this.createModelInstance(response);
10573
10579
  this.handleResponse([result], 'put');
10574
10580
  return result;
10581
+ }), catchError((error) => {
10582
+ this.handleResponseError([model], 'put');
10583
+ return throwError(error);
10575
10584
  }));
10576
10585
  }
10577
10586
  /**
@@ -10584,6 +10593,9 @@ let RestService$1 = class RestService extends DataService {
10584
10593
  const result = response.map((item) => this.createModelInstance(item));
10585
10594
  this.handleResponse(result, 'put');
10586
10595
  return result;
10596
+ }), catchError((error) => {
10597
+ this.handleResponseError(models, 'put');
10598
+ return throwError(error);
10587
10599
  }));
10588
10600
  }
10589
10601
  /**
@@ -10594,6 +10606,9 @@ let RestService$1 = class RestService extends DataService {
10594
10606
  return this.http.delete(`${this.apiUrl}/${model.id}`)
10595
10607
  .pipe(map(() => {
10596
10608
  this.handleResponse([model], 'delete');
10609
+ }), catchError((error) => {
10610
+ this.handleResponseError([model], 'delete');
10611
+ return throwError(error);
10597
10612
  }));
10598
10613
  }
10599
10614
  /**
@@ -10604,18 +10619,28 @@ let RestService$1 = class RestService extends DataService {
10604
10619
  return this.http.post(`${this.apiUrl}/delete`, classToPlain(models))
10605
10620
  .pipe(map(() => {
10606
10621
  this.handleResponse(models, 'delete');
10622
+ }), catchError((error) => {
10623
+ this.handleResponseError(models, 'delete');
10624
+ return throwError(error);
10607
10625
  }));
10608
10626
  }
10609
- /**
10610
- * Handle response data - update cache and dispatch event if it is needed
10611
- */
10612
- handleResponse(response, method) {
10627
+ track(response, method, postfix = '') {
10613
10628
  // not other way to check interface
10614
10629
  if ('mpData' in response[0]) {
10615
10630
  response.forEach((model) => {
10616
- this.mpService.track(`${method}${this.modelClass.name}`, model['mpData']);
10631
+ this.mpService.track(`${method}${this.modelClass.name}${postfix}`, model['mpData']);
10617
10632
  });
10618
10633
  }
10634
+ }
10635
+ handleResponseError(response, method) {
10636
+ // @TODO error notification?
10637
+ this.track(response, method, 'Error');
10638
+ }
10639
+ /**
10640
+ * Handle response data - update cache and dispatch event if it is needed
10641
+ */
10642
+ handleResponse(response, method) {
10643
+ this.track(response, method);
10619
10644
  if (this.getCache()) {
10620
10645
  this.updateCache(response, method);
10621
10646
  }
@@ -10629,7 +10654,6 @@ let RestService$1 = class RestService extends DataService {
10629
10654
  */
10630
10655
  updateCache(items, method) {
10631
10656
  let cache;
10632
- // @TODO vik mp.track
10633
10657
  switch (method) {
10634
10658
  case 'post':
10635
10659
  cache = this.cache.push(...items);
@@ -12514,7 +12538,7 @@ class EmployeeService extends RestService {
12514
12538
  if (error.status === 400) {
12515
12539
  this.toastService.error(this.messages.DEACTIVATE_ERROR);
12516
12540
  }
12517
- return throwError$1(error);
12541
+ return throwError(error);
12518
12542
  }));
12519
12543
  }
12520
12544
  }
@@ -19899,6 +19923,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImpor
19899
19923
  }]
19900
19924
  }] });
19901
19925
 
19926
+ /**
19927
+ * https://angular.io/guide/creating-libraries
19928
+ */
19902
19929
  class TtCoreModule {
19903
19930
  static forRoot(environment) {
19904
19931
  localStorage.setItem('api_uri', environment['api_uri']);
@@ -19929,6 +19956,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImpor
19929
19956
  }]
19930
19957
  }] });
19931
19958
 
19959
+ /**
19960
+ * extended version of currency pipe
19961
+ */
19962
+ class AppCurrencyPipe extends CurrencyPipe {
19963
+ transform(value, currencyCode, display, digitsInfo, locale) {
19964
+ // 2 non-zero decimals by default (43.43344 => 43.43, 0.0000114201553151 => $0.000011)
19965
+ digitsInfo = digitsInfo !== null && digitsInfo !== void 0 ? digitsInfo : '1.0-' + (value.toString().match(/[1-9]/).index || 2);
19966
+ return super.transform(value, currencyCode, display, digitsInfo, locale);
19967
+ }
19968
+ }
19969
+ AppCurrencyPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AppCurrencyPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe });
19970
+ AppCurrencyPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.5", ngImport: i0, type: AppCurrencyPipe, isStandalone: true, name: "appCurrency" });
19971
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AppCurrencyPipe, decorators: [{
19972
+ type: Pipe,
19973
+ args: [{
19974
+ name: 'appCurrency',
19975
+ standalone: true,
19976
+ }]
19977
+ }] });
19978
+
19932
19979
  var ClientDetailsMedicareExemptionEnum;
19933
19980
  (function (ClientDetailsMedicareExemptionEnum) {
19934
19981
  ClientDetailsMedicareExemptionEnum[ClientDetailsMedicareExemptionEnum["NO"] = 0] = "NO";
@@ -20467,9 +20514,10 @@ function addressCorelogicValidator() {
20467
20514
  if (locIdControl.enabled && locIdControl.hasError('required')) {
20468
20515
  return { address: 'City, state or postal code not specified' };
20469
20516
  }
20470
- if (refIdControl.enabled && refIdControl.hasError('required')) {
20471
- return { address: 'Street number not specified' };
20472
- }
20517
+ // @TODO Artem why?
20518
+ // if (refIdControl.enabled && refIdControl.hasError('required')) {
20519
+ // return { address: 'Street number not specified' };
20520
+ // }
20473
20521
  return null;
20474
20522
  };
20475
20523
  }
@@ -20488,7 +20536,9 @@ class AddressForm extends AbstractForm {
20488
20536
  type: new UntypedFormControl((address === null || address === void 0 ? void 0 : address.type) || AddressTypeEnum.STREET, Validators.required),
20489
20537
  // corelogic fields (required for Australia and disabled for other countries)
20490
20538
  corelogicLocId: new UntypedFormControl({ value: address === null || address === void 0 ? void 0 : address.corelogicLocId, disabled: true }, Validators.required),
20491
- corelogicRefId: new UntypedFormControl({ value: address === null || address === void 0 ? void 0 : address.corelogicRefId, disabled: true }, Validators.required),
20539
+ corelogicRefId: new UntypedFormControl({ value: address === null || address === void 0 ? void 0 : address.corelogicRefId, disabled: true }),
20540
+ // @TODO Artem why?
20541
+ // corelogicRefId: new UntypedFormControl({value: address?.corelogicRefId, disabled: true}, Validators.required),
20492
20542
  // manual fields (using when address not found in corelogic)
20493
20543
  unitNumber: new UntypedFormControl({ value: address === null || address === void 0 ? void 0 : address.unitNumber, disabled: true }),
20494
20544
  address: new UntypedFormControl({ value: address === null || address === void 0 ? void 0 : address.address, disabled: true }, Validators.required),
@@ -23101,6 +23151,9 @@ class AllocationRuleForm extends AbstractForm {
23101
23151
  this.transactionFormGroup.get('business').enable({ emitEvent: false });
23102
23152
  if (this.isGST) {
23103
23153
  this.transactionFormGroup.get('isGST').enable({ emitEvent: false });
23154
+ if (this.get('type').value === AllocationRuleTypeEnum.EXPENSE) {
23155
+ this.transactionFormGroup.get('isGST').setValue(true);
23156
+ }
23104
23157
  }
23105
23158
  break;
23106
23159
  }
@@ -23702,5 +23755,5 @@ var MessagesEnum;
23702
23755
  * Generated bundle index. Do not edit.
23703
23756
  */
23704
23757
 
23705
- 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, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AuthService, BANK_ACCOUNT_TYPES, 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, BankTransactionCalculationService, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetForm, BudgetMessagesEnum, BudgetRule, BudgetService, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsInvoiceExpenseEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsSalaryIncludedListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientIncomeTypes, ClientIncomeTypesForm, ClientIncomeTypesService, ClientInvite, ClientInviteCollection, ClientInviteMessages, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CorelogicService, CorelogicSuggestion, Country, 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, EmployeeInvite, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialYear, FinancialYearService, Firm, FirmForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GoogleService, HeaderTitleService, Holding, HoldingCollection, HoldingForm, HoldingIncomeForm, HoldingMessagesEnum, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleForm, HoldingSaleMessagesEnum, HoldingSaleService, HoldingService, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, JsPdf, JwtService, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanFrequencyEnum, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LogbookBestPeriodService, LogbookPeriod, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MixpanelService, 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, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, Property, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyDocument, PropertyDocumentForm, PropertyDocumentMessagesEnum, PropertyDocumentService, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestService$1 as RestService, RewardfulService, SERVICE_PRODUCT_ROLES, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, ShareFilterOptionsEnum, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessLossesCollection, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseForm, TransactionCalculationService, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TtCoreModule, TutorialVideoService, USER_ROLES, USER_WORK_POSITION, UniqueEmailValidator, User, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeCollection, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserForm, UserInviteForm, UserMedicareExemptionEnum, UserMessagesEnum, UserRolesEnum, 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, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, minDateValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, taxReviewFilterPredicate, toArray };
23758
+ 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, AuthService, BANK_ACCOUNT_TYPES, 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, BankTransactionCalculationService, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetForm, BudgetMessagesEnum, BudgetRule, BudgetService, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsInvoiceExpenseEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsSalaryIncludedListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientIncomeTypes, ClientIncomeTypesForm, ClientIncomeTypesService, ClientInvite, ClientInviteCollection, ClientInviteMessages, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CorelogicService, CorelogicSuggestion, Country, 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, EmployeeInvite, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialYear, FinancialYearService, Firm, FirmForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GoogleService, HeaderTitleService, Holding, HoldingCollection, HoldingForm, HoldingIncomeForm, HoldingMessagesEnum, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleForm, HoldingSaleMessagesEnum, HoldingSaleService, HoldingService, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, JsPdf, JwtService, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanFrequencyEnum, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LogbookBestPeriodService, LogbookPeriod, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MixpanelService, 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, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, Property, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyDocument, PropertyDocumentForm, PropertyDocumentMessagesEnum, PropertyDocumentService, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestService$1 as RestService, RewardfulService, SERVICE_PRODUCT_ROLES, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, ShareFilterOptionsEnum, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessLossesCollection, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseForm, TransactionCalculationService, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TtCoreModule, TutorialVideoService, USER_ROLES, USER_WORK_POSITION, UniqueEmailValidator, User, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeCollection, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserForm, UserInviteForm, UserMedicareExemptionEnum, UserMessagesEnum, UserRolesEnum, 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, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, minDateValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, taxReviewFilterPredicate, toArray };
23706
23759
  //# sourceMappingURL=taxtank-core.mjs.map