taxtank-core 0.33.82 → 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.
Files changed (40) hide show
  1. package/esm2022/src/lib/collections/collection.mjs +2 -2
  2. package/esm2022/src/lib/collections/transaction/transaction.collection.mjs +4 -6
  3. package/esm2022/src/lib/db/Models/client/client-details.mjs +1 -1
  4. package/esm2022/src/lib/forms/holding/holding-trade/holding-trade.form.mjs +2 -2
  5. package/esm2022/src/lib/interceptors/aussie.interceptor.mjs +35 -0
  6. package/esm2022/src/lib/interceptors/interceptors.module.mjs +12 -1
  7. package/esm2022/src/lib/models/aussie/aussie-store.interface.mjs +2 -0
  8. package/esm2022/src/lib/models/aussie/aussie-store.mjs +4 -0
  9. package/esm2022/src/lib/models/aussie/index.mjs +3 -0
  10. package/esm2022/src/lib/models/client/client-details.mjs +4 -1
  11. package/esm2022/src/lib/models/index.mjs +2 -1
  12. package/esm2022/src/lib/models/report/vehicle-expense/vehicle-expense.mjs +2 -4
  13. package/esm2022/src/lib/models/vehicle/vehicle-claim.mjs +3 -2
  14. package/esm2022/src/lib/services/http/aussie/aussie-store.service.mjs +26 -0
  15. package/esm2022/src/lib/services/http/aussie/aussie.service.mjs +56 -0
  16. package/esm2022/src/lib/services/http/aussie/index.mjs +3 -0
  17. package/esm2022/src/lib/services/http/firm/client-invite/client-invite.service.mjs +2 -2
  18. package/esm2022/src/lib/services/http/holding/holding-type.service.mjs +1 -2
  19. package/esm2022/src/lib/services/http/index.mjs +2 -1
  20. package/esm2022/src/lib/services/http/property/property.service.mjs +4 -1
  21. package/esm2022/src/lib/services/http/rest/rest.service.mjs +5 -1
  22. package/esm2022/src/lib/services/http/user/user.service.mjs +4 -4
  23. package/fesm2022/taxtank-core.mjs +139 -17
  24. package/fesm2022/taxtank-core.mjs.map +1 -1
  25. package/package.json +1 -1
  26. package/src/lib/db/Models/client/client-details.d.ts +1 -0
  27. package/src/lib/interceptors/aussie.interceptor.d.ts +16 -0
  28. package/src/lib/models/aussie/aussie-store.d.ts +15 -0
  29. package/src/lib/models/aussie/aussie-store.interface.d.ts +13 -0
  30. package/src/lib/models/aussie/index.d.ts +2 -0
  31. package/src/lib/models/client/client-details.d.ts +1 -0
  32. package/src/lib/models/index.d.ts +1 -0
  33. package/src/lib/models/report/vehicle-expense/vehicle-expense.d.ts +1 -1
  34. package/src/lib/services/http/aussie/aussie-store.service.d.ts +15 -0
  35. package/src/lib/services/http/aussie/aussie.service.d.ts +17 -0
  36. package/src/lib/services/http/aussie/index.d.ts +2 -0
  37. package/src/lib/services/http/index.d.ts +1 -0
  38. package/src/lib/services/http/property/property.service.d.ts +1 -0
  39. package/src/lib/services/http/rest/rest.service.d.ts +1 -0
  40. package/src/lib/services/http/user/user.service.d.ts +4 -1
@@ -1836,7 +1836,7 @@ class Collection {
1836
1836
  return [...this.items];
1837
1837
  }
1838
1838
  get first() {
1839
- return first(this.items);
1839
+ return first(this.items) ?? null;
1840
1840
  }
1841
1841
  get last() {
1842
1842
  return last(this.items);
@@ -4108,6 +4108,9 @@ class ClientDetails extends ClientDetails$1 {
4108
4108
  isBasiqConsentExpired() {
4109
4109
  return this.basiqConsentExpiryDate && new Date() >= this.basiqConsentExpiryDate;
4110
4110
  }
4111
+ sharesightDisconnected() {
4112
+ return this.sharesightAccessToken && !this.sharesightRefreshToken;
4113
+ }
4111
4114
  }
4112
4115
  __decorate([
4113
4116
  Type(() => Date)
@@ -5126,9 +5129,10 @@ class VehicleClaim extends VehicleClaim$1 {
5126
5129
  const transactionsAmount = transactions
5127
5130
  .getByVehicleClaim(this)
5128
5131
  .getLogbookTransactions()
5132
+ .getTaxable()
5129
5133
  .sumBy('amount');
5130
5134
  // Math.abs because amount will be negative (because we sum expenses), but we don't want negative percent value
5131
- return Math.abs(transactionsAmount) * this.workUsage / 100;
5135
+ return Math.abs(transactionsAmount) * (this.workUsage / 100);
5132
5136
  }
5133
5137
  getAverageWeeklyKMS() {
5134
5138
  return this.kilometers / FinancialYear.weeksInYear;
@@ -7022,11 +7026,9 @@ class TransactionCollection extends TransactionBaseCollection {
7022
7026
  if (!vehicleClaim) {
7023
7027
  return this.create([]);
7024
7028
  }
7025
- return vehicleClaim.isSoleTank()
7026
- // sole tank may have multiple vehicle claims, so we need to filter by business.id
7027
- ? this.getVehicleTransactions().filterBy('business.id', vehicleClaim.business.id)
7028
- // work tank may have only one vehicle claim, so we need to filter by tank type
7029
- : this.getVehicleTransactions().filterBy('tankType', TankTypeEnum.WORK);
7029
+ return this.getVehicleTransactions()
7030
+ .filterBy('tankType', vehicleClaim.tankType)
7031
+ .filterBy('business.id', vehicleClaim.business.id);
7030
7032
  }
7031
7033
  /**
7032
7034
  * Get list of vehicle transactions except KMS transactions
@@ -8058,11 +8060,9 @@ class VehicleExpense extends AbstractModel {
8058
8060
  super();
8059
8061
  this.amount = amount;
8060
8062
  this.claimPercent = claimPercent;
8063
+ this.claimAmount = round(this.amount * this.claimPercent / 100, 2);
8061
8064
  this.description = description;
8062
8065
  }
8063
- getClaimAmount() {
8064
- return round(this.amount * (this.claimPercent / 100), 2);
8065
- }
8066
8066
  }
8067
8067
 
8068
8068
  const REPORTS = {
@@ -10900,6 +10900,9 @@ __decorate([
10900
10900
  Type(() => SoleBusiness)
10901
10901
  ], HomeOfficeLog.prototype, "business", void 0);
10902
10902
 
10903
+ class AussieStore extends AbstractModel {
10904
+ }
10905
+
10903
10906
  var CorelogicMessagesEnum;
10904
10907
  (function (CorelogicMessagesEnum) {
10905
10908
  CorelogicMessagesEnum["SERVICE_UNAVAILABLE"] = "Corelogic service is temporary unavailable, please try again in a few minutes.";
@@ -11406,6 +11409,10 @@ let RestService$1 = class RestService extends DataService {
11406
11409
  return this.createCollectionInstance(this.collectionClass, response);
11407
11410
  }), catchError((error) => this.handleError(error)));
11408
11411
  }
11412
+ fetchFirst(queryParams = {}) {
11413
+ return this.fetch(this.apiUrl, false, { params: queryParams })
11414
+ .pipe(map((collection) => collection.first));
11415
+ }
11409
11416
  get(path = this.apiUrl) {
11410
11417
  this.handleAccessError('get');
11411
11418
  if (!this.hasRoles()) {
@@ -12870,7 +12877,7 @@ class ClientInviteService extends RestService$1 {
12870
12877
  // TaxReviewService is listening client invites acception. With the new rest we are using listenCSE method, but old rest does not have this method.
12871
12878
  // We need to refactor TaxReviewService with new rest first, then we can listenCSE and remove manual events
12872
12879
  this.eventDispatcherService.dispatch(new AppEvent(AppEventTypeEnum.CLIENT_INVITE_ACCEPTED, null));
12873
- // this.handleResponse([invite], 'delete');
12880
+ this.handleResponse([invite], 'delete');
12874
12881
  }));
12875
12882
  }
12876
12883
  /**
@@ -14383,6 +14390,9 @@ class PropertyService extends RestService$1 {
14383
14390
  return throwError(() => error);
14384
14391
  }));
14385
14392
  }
14393
+ getCorelogicStats(property) {
14394
+ return this.http.get(`${this.apiUrl}/${property.id}/corelogic-stats`);
14395
+ }
14386
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 }); }
14387
14397
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
14388
14398
  }
@@ -16350,10 +16360,10 @@ class UserService extends RestService$1 {
16350
16360
  }));
16351
16361
  }
16352
16362
  connectSharesight(code) {
16353
- return this.http.post(`${this.environment.apiV2}/sharesight/connect`, { code }).pipe(map((sharesightAccessToken) => {
16354
- this.refreshCache();
16363
+ return this.http.post(`${this.environment.apiV2}/sharesight/connect`, { code }).pipe(map((result) => {
16364
+ this.setCache([Object.assign(this.getCacheFirst(), result)], true);
16355
16365
  this.toastService.success(UserMessagesEnum.SHARESIGHT_CONNECTED);
16356
- return sharesightAccessToken;
16366
+ return result;
16357
16367
  }), catchError((error) => {
16358
16368
  if (error.status === 503) {
16359
16369
  this.toastService.error(UserMessagesEnum.SHARESIGHT_ERROR);
@@ -16473,7 +16483,6 @@ class HoldingTypeService extends RestService$1 {
16473
16483
  }
16474
16484
  listenEvents() {
16475
16485
  this.listenCSE(HoldingTrade, (trades) => this.hasInCache(trades[0].holdingType.id) ? '' : this.updateCache([trades[0].holdingType], 'post'), ['post']);
16476
- this.listenCSE(HoldingTrade, (trades) => this.updateCache([trades[0].holdingType], 'put'), ['put']);
16477
16486
  this.listenCSE(HoldingTradeImport, this.refreshCache, ['post']);
16478
16487
  }
16479
16488
  listenNotifications() {
@@ -16750,6 +16759,77 @@ var RestMessagesEnum;
16750
16759
  RestMessagesEnum["DELETE"] = "Deleted";
16751
16760
  })(RestMessagesEnum || (RestMessagesEnum = {}));
16752
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
+
16753
16833
  var IncomeSourceTypes = [
16754
16834
  {
16755
16835
  id: 11,
@@ -20429,6 +20509,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
20429
20509
  args: ['environment']
20430
20510
  }] }] });
20431
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
+
20432
20544
  class InterceptorsModule {
20433
20545
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
20434
20546
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: InterceptorsModule }); }
@@ -20438,6 +20550,11 @@ class InterceptorsModule {
20438
20550
  useClass: CorelogicInterceptor,
20439
20551
  multi: true
20440
20552
  },
20553
+ {
20554
+ provide: HTTP_INTERCEPTORS,
20555
+ useClass: AussieInterceptor,
20556
+ multi: true
20557
+ },
20441
20558
  // @TODO move to user module
20442
20559
  {
20443
20560
  provide: HTTP_INTERCEPTORS,
@@ -20480,6 +20597,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
20480
20597
  useClass: CorelogicInterceptor,
20481
20598
  multi: true
20482
20599
  },
20600
+ {
20601
+ provide: HTTP_INTERCEPTORS,
20602
+ useClass: AussieInterceptor,
20603
+ multi: true
20604
+ },
20483
20605
  // @TODO move to user module
20484
20606
  {
20485
20607
  provide: HTTP_INTERCEPTORS,
@@ -24607,7 +24729,7 @@ class HoldingTradeForm extends AbstractForm {
24607
24729
  price: new UntypedFormControl(holdingTrade.price, [Validators.required, Validators.min(0)]),
24608
24730
  fee: new UntypedFormControl(holdingTrade.fee, [Validators.required, Validators.min(0)]),
24609
24731
  date: new UntypedFormControl(holdingTrade.date, Validators.required),
24610
- holdingType: new UntypedFormControl(holdingTrade.holdingType, Validators.required),
24732
+ holdingType: new UntypedFormControl({ value: holdingTrade.holdingType, disabled: !!holdingTrade.id }, Validators.required),
24611
24733
  ownershipPercent: new UntypedFormControl(holdingTrade.ownershipPercent || 100, Validators.required),
24612
24734
  file: new UntypedFormControl(holdingTrade.file)
24613
24735
  }, holdingTrade);
@@ -24972,5 +25094,5 @@ var MessagesEnum;
24972
25094
  * Generated bundle index. Do not edit.
24973
25095
  */
24974
25096
 
24975
- 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 };
24976
25098
  //# sourceMappingURL=taxtank-core.mjs.map