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';
@@ -3532,11 +3531,47 @@ __decorate([
3532
3531
  Type(() => Date)
3533
3532
  ], IncomeSource.prototype, "dateTo", void 0);
3534
3533
 
3535
- var TransactionSourceEnum;
3536
- (function (TransactionSourceEnum) {
3537
- TransactionSourceEnum[TransactionSourceEnum["CASH"] = 1] = "CASH";
3538
- TransactionSourceEnum[TransactionSourceEnum["BANK_TRANSACTION"] = 2] = "BANK_TRANSACTION";
3539
- })(TransactionSourceEnum || (TransactionSourceEnum = {}));
3534
+ /**
3535
+ * Income sources chart data
3536
+ */
3537
+ class IncomeSourceChartData {
3538
+ constructor(forecastedIncomeAmount, transactions) {
3539
+ this.forecastedIncomeAmount = forecastedIncomeAmount;
3540
+ this.transactions = transactions;
3541
+ }
3542
+ /**
3543
+ * Get prepared data for income sources chart
3544
+ */
3545
+ get() {
3546
+ const chartData = [{
3547
+ id: 'actualIncome',
3548
+ name: 'Actual Income',
3549
+ data: [],
3550
+ // display future actual incomes with dash line and past actual incomes with solid line
3551
+ zones: [{
3552
+ // line style after current month
3553
+ value: new FinancialYear().getMonthDate(new Date().getMonth()).getTime(),
3554
+ dashStyle: 'Solid'
3555
+ }, {
3556
+ // default line style
3557
+ dashStyle: 'Dash'
3558
+ }]
3559
+ }, {
3560
+ id: 'forecastedIncome',
3561
+ name: 'Forecasted Income',
3562
+ data: [],
3563
+ }];
3564
+ for (const key in MonthNameShortEnum) {
3565
+ if (MonthNameShortEnum.hasOwnProperty(key)) {
3566
+ // transaction collection for provided month
3567
+ const monthTransactionCollection = this.transactions.getByMonth(+MonthNumberEnum[key]);
3568
+ chartData[0].data.push([new FinancialYear().getMonthDate(+MonthNumberEnum[key]).getTime(), monthTransactionCollection.amount]);
3569
+ chartData[1].data.push([new FinancialYear().getMonthDate(+MonthNumberEnum[key]).getTime(), this.forecastedIncomeAmount / 12]);
3570
+ }
3571
+ }
3572
+ return chartData;
3573
+ }
3574
+ }
3540
3575
 
3541
3576
  class AllocationRuleTransaction extends AllocationRuleTransaction$1 {
3542
3577
  constructor() {
@@ -3561,15 +3596,9 @@ class AllocationRuleTransaction extends AllocationRuleTransaction$1 {
3561
3596
  * Create Transaction instance based on passed bank transaction and rule transaction
3562
3597
  */
3563
3598
  toTransaction(bankTransaction) {
3564
- return plainToClass(Transaction, {
3565
- amount: bankTransaction.amount,
3566
- description: bankTransaction.description,
3567
- type: bankTransaction.type,
3568
- date: bankTransaction.date,
3569
- source: TransactionSourceEnum.BANK_TRANSACTION,
3599
+ const transaction = merge(bankTransaction.toTransaction(this.isGST), {
3570
3600
  tax: this.tax,
3571
3601
  claimPercent: this.claimPercent,
3572
- isGST: this.isGST,
3573
3602
  chartAccounts: this.chartAccounts,
3574
3603
  property: this.property,
3575
3604
  loan: this.loan,
@@ -3579,8 +3608,9 @@ class AllocationRuleTransaction extends AllocationRuleTransaction$1 {
3579
3608
  childTransactions: this.childTransactions,
3580
3609
  business: this.business,
3581
3610
  operation: TransactionOperationEnum.ALLOCATE,
3582
- allocations: [TransactionAllocation.create(bankTransaction.amount, bankTransaction)],
3583
3611
  });
3612
+ transaction.allocations = [TransactionAllocation.create(transaction.amountWithGst, bankTransaction)];
3613
+ return transaction;
3584
3614
  }
3585
3615
  }
3586
3616
  __decorate([
@@ -3753,6 +3783,12 @@ var TransactionTypeEnum;
3753
3783
  TransactionTypeEnum[TransactionTypeEnum["CREDIT"] = 2] = "CREDIT";
3754
3784
  })(TransactionTypeEnum || (TransactionTypeEnum = {}));
3755
3785
 
3786
+ var TransactionSourceEnum;
3787
+ (function (TransactionSourceEnum) {
3788
+ TransactionSourceEnum[TransactionSourceEnum["CASH"] = 1] = "CASH";
3789
+ TransactionSourceEnum[TransactionSourceEnum["BANK_TRANSACTION"] = 2] = "BANK_TRANSACTION";
3790
+ })(TransactionSourceEnum || (TransactionSourceEnum = {}));
3791
+
3756
3792
  var TaxExemptionEnum;
3757
3793
  (function (TaxExemptionEnum) {
3758
3794
  TaxExemptionEnum[TaxExemptionEnum["ONE_YEAR_RULE"] = 1] = "ONE_YEAR_RULE";
@@ -5020,48 +5056,6 @@ var DepreciationLvpRateEnum;
5020
5056
  DepreciationLvpRateEnum[DepreciationLvpRateEnum["DEFAULT"] = 0.375] = "DEFAULT";
5021
5057
  })(DepreciationLvpRateEnum || (DepreciationLvpRateEnum = {}));
5022
5058
 
5023
- /**
5024
- * Income sources chart data
5025
- */
5026
- class IncomeSourceChartData {
5027
- constructor(forecastedIncomeAmount, transactions) {
5028
- this.forecastedIncomeAmount = forecastedIncomeAmount;
5029
- this.transactions = transactions;
5030
- }
5031
- /**
5032
- * Get prepared data for income sources chart
5033
- */
5034
- get() {
5035
- const chartData = [{
5036
- id: 'actualIncome',
5037
- name: 'Actual Income',
5038
- data: [],
5039
- // display future actual incomes with dash line and past actual incomes with solid line
5040
- zones: [{
5041
- // line style after current month
5042
- value: new FinancialYear().getMonthDate(new Date().getMonth()).getTime(),
5043
- dashStyle: 'Solid'
5044
- }, {
5045
- // default line style
5046
- dashStyle: 'Dash'
5047
- }]
5048
- }, {
5049
- id: 'forecastedIncome',
5050
- name: 'Forecasted Income',
5051
- data: [],
5052
- }];
5053
- for (const key in MonthNameShortEnum) {
5054
- if (MonthNameShortEnum.hasOwnProperty(key)) {
5055
- // transaction collection for provided month
5056
- const monthTransactionCollection = this.transactions.getByMonth(+MonthNumberEnum[key]);
5057
- chartData[0].data.push([new FinancialYear().getMonthDate(+MonthNumberEnum[key]).getTime(), monthTransactionCollection.amount]);
5058
- chartData[1].data.push([new FinancialYear().getMonthDate(+MonthNumberEnum[key]).getTime(), this.forecastedIncomeAmount / 12]);
5059
- }
5060
- }
5061
- return chartData;
5062
- }
5063
- }
5064
-
5065
5059
  class SoleBusiness extends SoleBusiness$1 {
5066
5060
  }
5067
5061
  /**
@@ -6100,15 +6094,21 @@ class BankTransaction extends BankTransaction$1 {
6100
6094
  /**
6101
6095
  * Create Transaction instance based on Bank Transaction
6102
6096
  */
6103
- toTransaction() {
6104
- return plainToClass(Transaction, {
6105
- amount: this.amount,
6097
+ toTransaction(isGST = false, allocations = new TransactionAllocationCollection([])) {
6098
+ const transaction = plainToClass(Transaction, {
6099
+ amount: this.getUnallocatedAmount(allocations),
6106
6100
  description: this.description,
6101
+ type: this.type,
6107
6102
  date: this.date,
6108
6103
  source: TransactionSourceEnum.BANK_TRANSACTION,
6109
6104
  operation: this.operation,
6110
- type: this.type,
6105
+ isGST: isGST,
6111
6106
  });
6107
+ // gst should be included
6108
+ if (isGST) {
6109
+ transaction.amount = transaction.amount / ChartAccounts.GSTCoefficient;
6110
+ }
6111
+ return transaction;
6112
6112
  }
6113
6113
  /**
6114
6114
  * Check if bank transaction is completely allocated
@@ -10482,6 +10482,9 @@ let RestService$1 = class RestService extends DataService {
10482
10482
  const result = this.createModelInstance(response);
10483
10483
  this.handleResponse([result], 'post');
10484
10484
  return result;
10485
+ }), catchError((error) => {
10486
+ this.handleResponseError([model], 'post');
10487
+ return throwError(error);
10485
10488
  }));
10486
10489
  }
10487
10490
  /**
@@ -10494,6 +10497,9 @@ let RestService$1 = class RestService extends DataService {
10494
10497
  const result = response.map((item) => this.createModelInstance(item));
10495
10498
  this.handleResponse(result, 'post');
10496
10499
  return result;
10500
+ }), catchError((error) => {
10501
+ this.handleResponseError(models, 'post');
10502
+ return throwError(error);
10497
10503
  }));
10498
10504
  }
10499
10505
  /**
@@ -10506,6 +10512,9 @@ let RestService$1 = class RestService extends DataService {
10506
10512
  const result = this.createModelInstance(response);
10507
10513
  this.handleResponse([result], 'put');
10508
10514
  return result;
10515
+ }), catchError((error) => {
10516
+ this.handleResponseError([model], 'put');
10517
+ return throwError(error);
10509
10518
  }));
10510
10519
  }
10511
10520
  /**
@@ -10518,6 +10527,9 @@ let RestService$1 = class RestService extends DataService {
10518
10527
  const result = response.map((item) => this.createModelInstance(item));
10519
10528
  this.handleResponse(result, 'put');
10520
10529
  return result;
10530
+ }), catchError((error) => {
10531
+ this.handleResponseError(models, 'put');
10532
+ return throwError(error);
10521
10533
  }));
10522
10534
  }
10523
10535
  /**
@@ -10528,6 +10540,9 @@ let RestService$1 = class RestService extends DataService {
10528
10540
  return this.http.delete(`${this.apiUrl}/${model.id}`)
10529
10541
  .pipe(map(() => {
10530
10542
  this.handleResponse([model], 'delete');
10543
+ }), catchError((error) => {
10544
+ this.handleResponseError([model], 'delete');
10545
+ return throwError(error);
10531
10546
  }));
10532
10547
  }
10533
10548
  /**
@@ -10538,18 +10553,28 @@ let RestService$1 = class RestService extends DataService {
10538
10553
  return this.http.post(`${this.apiUrl}/delete`, classToPlain(models))
10539
10554
  .pipe(map(() => {
10540
10555
  this.handleResponse(models, 'delete');
10556
+ }), catchError((error) => {
10557
+ this.handleResponseError(models, 'delete');
10558
+ return throwError(error);
10541
10559
  }));
10542
10560
  }
10543
- /**
10544
- * Handle response data - update cache and dispatch event if it is needed
10545
- */
10546
- handleResponse(response, method) {
10561
+ track(response, method, postfix = '') {
10547
10562
  // not other way to check interface
10548
10563
  if ('mpData' in response[0]) {
10549
10564
  response.forEach((model) => {
10550
- this.mpService.track(`${method}${this.modelClass.name}`, model['mpData']);
10565
+ this.mpService.track(`${method}${this.modelClass.name}${postfix}`, model['mpData']);
10551
10566
  });
10552
10567
  }
10568
+ }
10569
+ handleResponseError(response, method) {
10570
+ // @TODO error notification?
10571
+ this.track(response, method, 'Error');
10572
+ }
10573
+ /**
10574
+ * Handle response data - update cache and dispatch event if it is needed
10575
+ */
10576
+ handleResponse(response, method) {
10577
+ this.track(response, method);
10553
10578
  if (this.getCache()) {
10554
10579
  this.updateCache(response, method);
10555
10580
  }
@@ -10563,7 +10588,6 @@ let RestService$1 = class RestService extends DataService {
10563
10588
  */
10564
10589
  updateCache(items, method) {
10565
10590
  let cache;
10566
- // @TODO vik mp.track
10567
10591
  switch (method) {
10568
10592
  case 'post':
10569
10593
  cache = this.cache.push(...items);
@@ -12421,7 +12445,7 @@ class EmployeeService extends RestService {
12421
12445
  if (error.status === 400) {
12422
12446
  this.toastService.error(this.messages.DEACTIVATE_ERROR);
12423
12447
  }
12424
- return throwError$1(error);
12448
+ return throwError(error);
12425
12449
  }));
12426
12450
  }
12427
12451
  }
@@ -19768,6 +19792,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImpor
19768
19792
  }]
19769
19793
  }] });
19770
19794
 
19795
+ /**
19796
+ * https://angular.io/guide/creating-libraries
19797
+ */
19771
19798
  class TtCoreModule {
19772
19799
  static forRoot(environment) {
19773
19800
  localStorage.setItem('api_uri', environment['api_uri']);
@@ -19798,6 +19825,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImpor
19798
19825
  }]
19799
19826
  }] });
19800
19827
 
19828
+ /**
19829
+ * extended version of currency pipe
19830
+ */
19831
+ class AppCurrencyPipe extends CurrencyPipe {
19832
+ transform(value, currencyCode, display, digitsInfo, locale) {
19833
+ // 2 non-zero decimals by default (43.43344 => 43.43, 0.0000114201553151 => $0.000011)
19834
+ digitsInfo = digitsInfo ?? '1.0-' + (value.toString().match(/[1-9]/).index || 2);
19835
+ return super.transform(value, currencyCode, display, digitsInfo, locale);
19836
+ }
19837
+ }
19838
+ AppCurrencyPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AppCurrencyPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe });
19839
+ AppCurrencyPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.5", ngImport: i0, type: AppCurrencyPipe, isStandalone: true, name: "appCurrency" });
19840
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AppCurrencyPipe, decorators: [{
19841
+ type: Pipe,
19842
+ args: [{
19843
+ name: 'appCurrency',
19844
+ standalone: true,
19845
+ }]
19846
+ }] });
19847
+
19801
19848
  var ClientDetailsMedicareExemptionEnum;
19802
19849
  (function (ClientDetailsMedicareExemptionEnum) {
19803
19850
  ClientDetailsMedicareExemptionEnum[ClientDetailsMedicareExemptionEnum["NO"] = 0] = "NO";
@@ -20340,9 +20387,10 @@ function addressCorelogicValidator() {
20340
20387
  if (locIdControl.enabled && locIdControl.hasError('required')) {
20341
20388
  return { address: 'City, state or postal code not specified' };
20342
20389
  }
20343
- if (refIdControl.enabled && refIdControl.hasError('required')) {
20344
- return { address: 'Street number not specified' };
20345
- }
20390
+ // @TODO Artem why?
20391
+ // if (refIdControl.enabled && refIdControl.hasError('required')) {
20392
+ // return { address: 'Street number not specified' };
20393
+ // }
20346
20394
  return null;
20347
20395
  };
20348
20396
  }
@@ -20361,7 +20409,9 @@ class AddressForm extends AbstractForm {
20361
20409
  type: new UntypedFormControl(address?.type || AddressTypeEnum.STREET, Validators.required),
20362
20410
  // corelogic fields (required for Australia and disabled for other countries)
20363
20411
  corelogicLocId: new UntypedFormControl({ value: address?.corelogicLocId, disabled: true }, Validators.required),
20364
- corelogicRefId: new UntypedFormControl({ value: address?.corelogicRefId, disabled: true }, Validators.required),
20412
+ corelogicRefId: new UntypedFormControl({ value: address?.corelogicRefId, disabled: true }),
20413
+ // @TODO Artem why?
20414
+ // corelogicRefId: new UntypedFormControl({value: address?.corelogicRefId, disabled: true}, Validators.required),
20365
20415
  // manual fields (using when address not found in corelogic)
20366
20416
  unitNumber: new UntypedFormControl({ value: address?.unitNumber, disabled: true }),
20367
20417
  address: new UntypedFormControl({ value: address?.address, disabled: true }, Validators.required),
@@ -22961,6 +23011,9 @@ class AllocationRuleForm extends AbstractForm {
22961
23011
  this.transactionFormGroup.get('business').enable({ emitEvent: false });
22962
23012
  if (this.isGST) {
22963
23013
  this.transactionFormGroup.get('isGST').enable({ emitEvent: false });
23014
+ if (this.get('type').value === AllocationRuleTypeEnum.EXPENSE) {
23015
+ this.transactionFormGroup.get('isGST').setValue(true);
23016
+ }
22964
23017
  }
22965
23018
  break;
22966
23019
  }
@@ -23557,5 +23610,5 @@ var MessagesEnum;
23557
23610
  * Generated bundle index. Do not edit.
23558
23611
  */
23559
23612
 
23560
- 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 };
23613
+ 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 };
23561
23614
  //# sourceMappingURL=taxtank-core.mjs.map