taxtank-core 0.33.82 → 0.33.84

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 -3
  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 -18
  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 -2
  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
  /**
@@ -14314,7 +14321,6 @@ class PropertyService extends RestService$1 {
14314
14321
  this.collectionClass = PropertyCollection;
14315
14322
  this.endpointUri = 'properties';
14316
14323
  this.disabledMethods = ['deleteBatch'];
14317
- this.roles = [UserRolesEnum.PROPERTY_TANK];
14318
14324
  this.listenEvents();
14319
14325
  }
14320
14326
  get() {
@@ -14383,6 +14389,9 @@ class PropertyService extends RestService$1 {
14383
14389
  return throwError(() => error);
14384
14390
  }));
14385
14391
  }
14392
+ getCorelogicStats(property) {
14393
+ return this.http.get(`${this.apiUrl}/${property.id}/corelogic-stats`);
14394
+ }
14386
14395
  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
14396
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
14388
14397
  }
@@ -16350,10 +16359,10 @@ class UserService extends RestService$1 {
16350
16359
  }));
16351
16360
  }
16352
16361
  connectSharesight(code) {
16353
- return this.http.post(`${this.environment.apiV2}/sharesight/connect`, { code }).pipe(map((sharesightAccessToken) => {
16354
- this.refreshCache();
16362
+ return this.http.post(`${this.environment.apiV2}/sharesight/connect`, { code }).pipe(map((result) => {
16363
+ this.setCache([Object.assign(this.getCacheFirst(), result)], true);
16355
16364
  this.toastService.success(UserMessagesEnum.SHARESIGHT_CONNECTED);
16356
- return sharesightAccessToken;
16365
+ return result;
16357
16366
  }), catchError((error) => {
16358
16367
  if (error.status === 503) {
16359
16368
  this.toastService.error(UserMessagesEnum.SHARESIGHT_ERROR);
@@ -16473,7 +16482,6 @@ class HoldingTypeService extends RestService$1 {
16473
16482
  }
16474
16483
  listenEvents() {
16475
16484
  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
16485
  this.listenCSE(HoldingTradeImport, this.refreshCache, ['post']);
16478
16486
  }
16479
16487
  listenNotifications() {
@@ -16750,6 +16758,77 @@ var RestMessagesEnum;
16750
16758
  RestMessagesEnum["DELETE"] = "Deleted";
16751
16759
  })(RestMessagesEnum || (RestMessagesEnum = {}));
16752
16760
 
16761
+ /**
16762
+ * Service to work with aussie api
16763
+ * https://baas.lendi-paas-stg.net/playground
16764
+ */
16765
+ class AussieService {
16766
+ constructor(http, environment) {
16767
+ this.http = http;
16768
+ this.environment = environment;
16769
+ }
16770
+ getAvailability(brokerId) {
16771
+ // return this.http.get(
16772
+ // `${this.environment.aussieUrl}/appointments/availability/next/${brokerId}`,
16773
+ // { params: { brand: 'aussie', days: 28 } }
16774
+ // )
16775
+ 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' } } })
16776
+ .pipe(map((response) => {
16777
+ const dates = response.data.Video.availability.map(availability => new Date(availability.datetime));
16778
+ return this.get30MinuteSlotsGroupedByDay(dates);
16779
+ }));
16780
+ }
16781
+ get30MinuteSlotsGroupedByDay(dates) {
16782
+ const groupedSlots = {};
16783
+ for (let i = 0; i < dates.length - 1; i++) {
16784
+ const start = dates[i];
16785
+ const end = new Date(start.getTime() + 30 * 60 * 1000);
16786
+ // Verify that all 15-minute intervals within this 30-minute range exist
16787
+ if (dates.some(date => date.getTime() === end.getTime())) {
16788
+ const dayKey = start.toISOString().split('T')[0];
16789
+ if (!groupedSlots[dayKey]) {
16790
+ groupedSlots[dayKey] = [];
16791
+ }
16792
+ groupedSlots[dayKey].push(new DateRange(start, end));
16793
+ }
16794
+ }
16795
+ console.log(groupedSlots);
16796
+ return groupedSlots;
16797
+ }
16798
+ 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 }); }
16799
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieService, providedIn: 'root' }); }
16800
+ }
16801
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieService, decorators: [{
16802
+ type: Injectable,
16803
+ args: [{
16804
+ providedIn: 'root'
16805
+ }]
16806
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
16807
+ type: Inject,
16808
+ args: ['environment']
16809
+ }] }] });
16810
+
16811
+ /**
16812
+ * Service that handling banks logic
16813
+ */
16814
+ class AussieStoreService extends RestService$1 {
16815
+ constructor() {
16816
+ super(...arguments);
16817
+ this.modelClass = AussieStore;
16818
+ this.collectionClass = Collection;
16819
+ this.endpointUri = 'aussie/stores';
16820
+ this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
16821
+ }
16822
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieStoreService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16823
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieStoreService, providedIn: 'root' }); }
16824
+ }
16825
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieStoreService, decorators: [{
16826
+ type: Injectable,
16827
+ args: [{
16828
+ providedIn: 'root'
16829
+ }]
16830
+ }] });
16831
+
16753
16832
  var IncomeSourceTypes = [
16754
16833
  {
16755
16834
  id: 11,
@@ -20429,6 +20508,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
20429
20508
  args: ['environment']
20430
20509
  }] }] });
20431
20510
 
20511
+ /**
20512
+ * Aussie interceptor add x-api-key and Bearer
20513
+ */
20514
+ class AussieInterceptor {
20515
+ constructor(aussieService, environment) {
20516
+ this.aussieService = aussieService;
20517
+ this.environment = environment;
20518
+ }
20519
+ intercept(request, next) {
20520
+ // skip non-aussie requests
20521
+ if (!request.url.includes(this.environment.aussieUrl)) {
20522
+ return next.handle(request);
20523
+ }
20524
+ return next.handle(this.addKey(request));
20525
+ }
20526
+ addKey(request) {
20527
+ return request.clone({
20528
+ setHeaders: {
20529
+ 'x-api-key': this.environment.aussieKey
20530
+ }
20531
+ });
20532
+ }
20533
+ 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 }); }
20534
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieInterceptor }); }
20535
+ }
20536
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AussieInterceptor, decorators: [{
20537
+ type: Injectable
20538
+ }], ctorParameters: () => [{ type: AussieService }, { type: undefined, decorators: [{
20539
+ type: Inject,
20540
+ args: ['environment']
20541
+ }] }] });
20542
+
20432
20543
  class InterceptorsModule {
20433
20544
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
20434
20545
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: InterceptorsModule }); }
@@ -20438,6 +20549,11 @@ class InterceptorsModule {
20438
20549
  useClass: CorelogicInterceptor,
20439
20550
  multi: true
20440
20551
  },
20552
+ {
20553
+ provide: HTTP_INTERCEPTORS,
20554
+ useClass: AussieInterceptor,
20555
+ multi: true
20556
+ },
20441
20557
  // @TODO move to user module
20442
20558
  {
20443
20559
  provide: HTTP_INTERCEPTORS,
@@ -20480,6 +20596,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
20480
20596
  useClass: CorelogicInterceptor,
20481
20597
  multi: true
20482
20598
  },
20599
+ {
20600
+ provide: HTTP_INTERCEPTORS,
20601
+ useClass: AussieInterceptor,
20602
+ multi: true
20603
+ },
20483
20604
  // @TODO move to user module
20484
20605
  {
20485
20606
  provide: HTTP_INTERCEPTORS,
@@ -24607,7 +24728,7 @@ class HoldingTradeForm extends AbstractForm {
24607
24728
  price: new UntypedFormControl(holdingTrade.price, [Validators.required, Validators.min(0)]),
24608
24729
  fee: new UntypedFormControl(holdingTrade.fee, [Validators.required, Validators.min(0)]),
24609
24730
  date: new UntypedFormControl(holdingTrade.date, Validators.required),
24610
- holdingType: new UntypedFormControl(holdingTrade.holdingType, Validators.required),
24731
+ holdingType: new UntypedFormControl({ value: holdingTrade.holdingType, disabled: !!holdingTrade.id }, Validators.required),
24611
24732
  ownershipPercent: new UntypedFormControl(holdingTrade.ownershipPercent || 100, Validators.required),
24612
24733
  file: new UntypedFormControl(holdingTrade.file)
24613
24734
  }, holdingTrade);
@@ -24972,5 +25093,5 @@ var MessagesEnum;
24972
25093
  * Generated bundle index. Do not edit.
24973
25094
  */
24974
25095
 
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 };
25096
+ 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
25097
  //# sourceMappingURL=taxtank-core.mjs.map