taxtank-core 0.33.98 → 0.33.100

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 (39) hide show
  1. package/esm2022/src/lib/collections/depreciation.collection.mjs +6 -4
  2. package/esm2022/src/lib/db/Enums/user-event-type-type.enum.mjs +2 -1
  3. package/esm2022/src/lib/db/Models/client/client-details.mjs +1 -1
  4. package/esm2022/src/lib/db/Models/property/property-share.mjs +1 -1
  5. package/esm2022/src/lib/forms/depreciation/depreciation.form.mjs +2 -2
  6. package/esm2022/src/lib/models/client/client-details.mjs +1 -4
  7. package/esm2022/src/lib/models/client/index.mjs +2 -1
  8. package/esm2022/src/lib/models/client/sharesight/index.mjs +4 -0
  9. package/esm2022/src/lib/models/client/sharesight/sharesight-details-messages.enum.mjs +8 -0
  10. package/esm2022/src/lib/models/client/sharesight/sharesight-details.interface.mjs +2 -0
  11. package/esm2022/src/lib/models/client/sharesight/sharesight-details.mjs +18 -0
  12. package/esm2022/src/lib/models/endpoint/endpoints.const.mjs +6 -2
  13. package/esm2022/src/lib/models/user/user.mjs +1 -1
  14. package/esm2022/src/lib/services/http/client/index.mjs +2 -1
  15. package/esm2022/src/lib/services/http/client/sharesight-details.service.mjs +29 -0
  16. package/esm2022/src/lib/services/http/property/property-messages.enum.mjs +3 -1
  17. package/esm2022/src/lib/services/http/property/property.service.mjs +16 -1
  18. package/esm2022/src/lib/services/http/rest/rest.service.mjs +2 -1
  19. package/esm2022/src/lib/services/http/user/user-messages.enum.mjs +1 -5
  20. package/esm2022/src/lib/services/http/user/user.service.mjs +2 -22
  21. package/fesm2022/taxtank-core.mjs +94 -48
  22. package/fesm2022/taxtank-core.mjs.map +1 -1
  23. package/package.json +1 -1
  24. package/src/lib/collections/depreciation.collection.d.ts +2 -0
  25. package/src/lib/db/Enums/user-event-type-type.enum.d.ts +2 -1
  26. package/src/lib/db/Models/client/client-details.d.ts +0 -2
  27. package/src/lib/db/Models/property/property-share.d.ts +1 -0
  28. package/src/lib/models/client/client-details.d.ts +0 -1
  29. package/src/lib/models/client/index.d.ts +1 -0
  30. package/src/lib/models/client/sharesight/index.d.ts +3 -0
  31. package/src/lib/models/client/sharesight/sharesight-details-messages.enum.d.ts +6 -0
  32. package/src/lib/models/client/sharesight/sharesight-details.d.ts +16 -0
  33. package/src/lib/models/client/sharesight/sharesight-details.interface.d.ts +11 -0
  34. package/src/lib/services/http/client/index.d.ts +1 -0
  35. package/src/lib/services/http/client/sharesight-details.service.d.ts +15 -0
  36. package/src/lib/services/http/property/property-messages.enum.d.ts +3 -1
  37. package/src/lib/services/http/property/property.service.d.ts +3 -0
  38. package/src/lib/services/http/user/user-messages.enum.d.ts +1 -5
  39. package/src/lib/services/http/user/user.service.d.ts +0 -5
@@ -4130,9 +4130,6 @@ class ClientDetails extends ClientDetails$1 {
4130
4130
  isBasiqConsentExpired() {
4131
4131
  return this.basiqConsentExpiryDate && new Date() >= this.basiqConsentExpiryDate;
4132
4132
  }
4133
- sharesightDisconnected() {
4134
- return this.sharesightAccessToken && !this.sharesightRefreshToken;
4135
- }
4136
4133
  }
4137
4134
  __decorate([
4138
4135
  Type(() => Date)
@@ -4388,6 +4385,29 @@ __decorate([
4388
4385
  Type(() => ClientDetails)
4389
4386
  ], CapitalLoss.prototype, "clientDetails", void 0);
4390
4387
 
4388
+ var SharesightDetailsMessagesEnum;
4389
+ (function (SharesightDetailsMessagesEnum) {
4390
+ SharesightDetailsMessagesEnum["CONNECTED"] = "We're syncing your ShareSight trades, which might take a few minutes.";
4391
+ SharesightDetailsMessagesEnum["DISCONNECTED"] = "Sharesight disconnected";
4392
+ SharesightDetailsMessagesEnum["DISCONNECT_CONFIRM"] = "Disconnecting ShareSight means we can no longer sync data. Any trades already imported will become editable in TaxTank.";
4393
+ SharesightDetailsMessagesEnum["ERROR"] = "Sharesight connection error";
4394
+ })(SharesightDetailsMessagesEnum || (SharesightDetailsMessagesEnum = {}));
4395
+
4396
+ class SharesightDetails extends AbstractModel {
4397
+ isDisconnected() {
4398
+ return this.sharesightAccessToken && !this.sharesightRefreshToken;
4399
+ }
4400
+ isConnected(isHolding) {
4401
+ return isHolding ? this.importEnabled : this.exportEnabled;
4402
+ }
4403
+ isHolding() {
4404
+ return this.redirectUri.includes('holdings-tank');
4405
+ }
4406
+ }
4407
+ __decorate([
4408
+ Type(() => Date)
4409
+ ], SharesightDetails.prototype, "sharesightLastExportDate", void 0);
4410
+
4391
4411
  class EmployeeDetails extends EmployeeDetails$1 {
4392
4412
  get firmBranchNames() {
4393
4413
  return this.firmBranches.map(branch => branch.name).join(', ');
@@ -7153,6 +7173,24 @@ class TransactionAllocationCollection extends Collection {
7153
7173
  }
7154
7174
  }
7155
7175
 
7176
+ /**
7177
+ * Collection of depreciations
7178
+ */
7179
+ class DepreciationForecastCollection extends Collection {
7180
+ filterByYear(financialYear) {
7181
+ return new DepreciationForecastCollection(this.items.filter((forecast) => forecast.financialYear === financialYear));
7182
+ }
7183
+ getClaimAmountByMonth(month) {
7184
+ return this.items.reduce((sum, item) => sum + item.getClaimAmountByMonth(month), 0);
7185
+ }
7186
+ get amount() {
7187
+ return this.sumBy('amount');
7188
+ }
7189
+ get claimAmount() {
7190
+ return this.sumBy('claimAmount');
7191
+ }
7192
+ }
7193
+
7156
7194
  class DepreciationCollection extends TransactionBaseCollection {
7157
7195
  getSoleDepreciations() {
7158
7196
  return this.filter((depreciation) => depreciation.isSoleTank());
@@ -7170,8 +7208,7 @@ class DepreciationCollection extends TransactionBaseCollection {
7170
7208
  return this.sumBy('currentYearForecast.claimAmount');
7171
7209
  }
7172
7210
  getClaimedAmountByYear(year = +localStorage.getItem('financialYear')) {
7173
- const closeBalance = this.items.reduce((sum, depreciation) => sum + depreciation.getCloseBalanceByYear(year), 0);
7174
- return round(this.amount - closeBalance, 2);
7211
+ return this.getForecasts().filter(forecast => forecast.financialYear <= year).reduce((sum, forecast) => sum + forecast.claimAmount, 0);
7175
7212
  }
7176
7213
  getClaimAmountByYear(year = +localStorage.getItem('financialYear')) {
7177
7214
  return this.items.reduce((sum, depreciation) => sum + depreciation.getClaimAmountByYear(year), 0);
@@ -7179,6 +7216,9 @@ class DepreciationCollection extends TransactionBaseCollection {
7179
7216
  getCloseBalanceByYear(year = +localStorage.getItem('financialYear')) {
7180
7217
  return this.items.reduce((sum, depreciation) => sum + depreciation.getCloseBalanceByYear(year), 0);
7181
7218
  }
7219
+ getForecasts() {
7220
+ return new DepreciationForecastCollection(this.map(depreciation => depreciation.forecasts).flat());
7221
+ }
7182
7222
  getCurrentYearForecastAmount() {
7183
7223
  return this.sumBy('currentYearForecast.amount');
7184
7224
  }
@@ -9313,24 +9353,6 @@ class ClientPortfolioReportCollection extends Collection {
9313
9353
  }
9314
9354
  }
9315
9355
 
9316
- /**
9317
- * Collection of depreciations
9318
- */
9319
- class DepreciationForecastCollection extends Collection {
9320
- filterByYear(financialYear) {
9321
- return new DepreciationForecastCollection(this.items.filter((forecast) => forecast.financialYear === financialYear));
9322
- }
9323
- getClaimAmountByMonth(month) {
9324
- return this.items.reduce((sum, item) => sum + item.getClaimAmountByMonth(month), 0);
9325
- }
9326
- get amount() {
9327
- return this.sumBy('amount');
9328
- }
9329
- get claimAmount() {
9330
- return this.sumBy('claimAmount');
9331
- }
9332
- }
9333
-
9334
9356
  /**
9335
9357
  * Collection of income sources
9336
9358
  */
@@ -11459,6 +11481,7 @@ let RestService$1 = class RestService extends DataService {
11459
11481
  * @TODO: TT-4642 check customHttpErrorMessages fix change to backend errors
11460
11482
  */
11461
11483
  this.useBackendError = false;
11484
+ // @TODO upgrade to include success messages?
11462
11485
  this.httpErrorMessages = { ...HTTP_ERROR_MESSAGES, ...this.getCustomHttpErrorMessages() };
11463
11486
  }
11464
11487
  get apiUrl() {
@@ -11810,6 +11833,7 @@ var UserEventTypeTypeEnum;
11810
11833
  UserEventTypeTypeEnum[UserEventTypeTypeEnum["EMPLOYEE_EMAIL_CONFIRMED"] = 3020] = "EMPLOYEE_EMAIL_CONFIRMED";
11811
11834
  UserEventTypeTypeEnum[UserEventTypeTypeEnum["TAX_REVIEW_RECEIVED"] = 3030] = "TAX_REVIEW_RECEIVED";
11812
11835
  UserEventTypeTypeEnum[UserEventTypeTypeEnum["SHARESIGHT_IMPORT"] = 2070] = "SHARESIGHT_IMPORT";
11836
+ UserEventTypeTypeEnum[UserEventTypeTypeEnum["SHARESIGHT_PROPERTY_EXPORT"] = 2073] = "SHARESIGHT_PROPERTY_EXPORT";
11813
11837
  })(UserEventTypeTypeEnum || (UserEventTypeTypeEnum = {}));
11814
11838
 
11815
11839
  /**
@@ -14396,6 +14420,8 @@ var PropertyMessagesEnum;
14396
14420
  PropertyMessagesEnum["DELETE_CONFIRM"] = "Are you sure you want to delete property?";
14397
14421
  PropertyMessagesEnum["DELETE"] = "Property deleted";
14398
14422
  PropertyMessagesEnum["DELETE_500"] = "Only properties without transactions can be removed";
14423
+ PropertyMessagesEnum["SHARESIGHT_CONNECTED"] = "Property connected to sharesight";
14424
+ PropertyMessagesEnum["SHARESIGHT_DISCONNECTED"] = "Property disconnected from sharesight";
14399
14425
  })(PropertyMessagesEnum || (PropertyMessagesEnum = {}));
14400
14426
 
14401
14427
  /**
@@ -14412,6 +14438,7 @@ class PropertyService extends RestService$1 {
14412
14438
  this.endpointUri = 'properties';
14413
14439
  this.disabledMethods = ['deleteBatch'];
14414
14440
  this.listenEvents();
14441
+ this.listenNotifications();
14415
14442
  }
14416
14443
  get() {
14417
14444
  return super.get().pipe(map((properties) => properties.getActive()));
@@ -14429,6 +14456,12 @@ class PropertyService extends RestService$1 {
14429
14456
  return updatedProperty;
14430
14457
  }));
14431
14458
  }
14459
+ sharesightConnect(property) {
14460
+ return super.put(property, `${this.apiUrl}/${property.id}/sharesight-connect`);
14461
+ }
14462
+ sharesightDisconnect(property) {
14463
+ return super.put(property, `${this.apiUrl}/${property.id}/sharesight-disconnect`);
14464
+ }
14432
14465
  /**
14433
14466
  * @TODO no refresh cache with this.updateCache([this.getCache().findBy('id', change.model.property.id)], 'put');
14434
14467
  */
@@ -14447,6 +14480,13 @@ class PropertyService extends RestService$1 {
14447
14480
  });
14448
14481
  this.listenCSE(PropertyCategoryMovement, this.refreshCache);
14449
14482
  }
14483
+ listenNotifications() {
14484
+ this.eventDispatcherService.on(AppEventTypeEnum.NOTIFICATION_ADDED).subscribe((notification) => {
14485
+ if (!notification.isRead && notification.eventType === UserEventTypeTypeEnum.SHARESIGHT_IMPORT) {
14486
+ this.refreshCache();
14487
+ }
14488
+ });
14489
+ }
14450
14490
  updateDepreciationCalculation(property) {
14451
14491
  const propertyToUpdate = plainToClass(Property, { id: property.id, depreciationCalculation: property.depreciationCalculation });
14452
14492
  return this.put(propertyToUpdate)
@@ -16277,6 +16317,30 @@ var CapitalLossMessagesEnum;
16277
16317
  CapitalLossMessagesEnum["DELETE"] = "capital loss deleted";
16278
16318
  })(CapitalLossMessagesEnum || (CapitalLossMessagesEnum = {}));
16279
16319
 
16320
+ class SharesightDetailsService extends RestService$1 {
16321
+ constructor() {
16322
+ super(...arguments);
16323
+ this.modelClass = SharesightDetails;
16324
+ this.collectionClass = Collection;
16325
+ this.endpointUri = 'sharesight-details';
16326
+ this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
16327
+ }
16328
+ getCustomHttpErrorMessages() {
16329
+ return { 503: SharesightDetailsMessagesEnum.ERROR };
16330
+ }
16331
+ reconnect(sharesightDetails) {
16332
+ return this.put(sharesightDetails, `${this.apiUrl}/${sharesightDetails.id}/reconnect`);
16333
+ }
16334
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SharesightDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
16335
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SharesightDetailsService, providedIn: 'root' }); }
16336
+ }
16337
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SharesightDetailsService, decorators: [{
16338
+ type: Injectable,
16339
+ args: [{
16340
+ providedIn: 'root'
16341
+ }]
16342
+ }] });
16343
+
16280
16344
  class UserEventTypeCategory extends UserEventTypeCategory$1 {
16281
16345
  }
16282
16346
 
@@ -16360,10 +16424,6 @@ var UserMessagesEnum;
16360
16424
  UserMessagesEnum["USER_DATA_UPDATED"] = "Data was successfully updated!";
16361
16425
  UserMessagesEnum["CLIENT_DETAILS_UPDATED"] = "Client details updated";
16362
16426
  UserMessagesEnum["DELETE"] = "Closing your account will mean you won't be able to access this account again. It will also revoke consent for all banks and delete all transaction data. This can not be undone.";
16363
- UserMessagesEnum["SHARESIGHT_CONNECTED"] = "We're syncing your ShareSight trades, which might take a few minutes.";
16364
- UserMessagesEnum["SHARESIGHT_DISCONNECTED"] = "Sharesight disconnected";
16365
- UserMessagesEnum["SHARESIGHT_DISCONNECT_CONFIRM"] = "Disconnecting ShareSight means we can no longer sync data. Any trades already imported will become editable in TaxTank.";
16366
- UserMessagesEnum["SHARESIGHT_ERROR"] = "Sharesight connection error";
16367
16427
  })(UserMessagesEnum || (UserMessagesEnum = {}));
16368
16428
 
16369
16429
  /**
@@ -16460,24 +16520,6 @@ class UserService extends RestService$1 {
16460
16520
  return basiqId;
16461
16521
  }));
16462
16522
  }
16463
- connectSharesight(code) {
16464
- return this.http.post(`${this.environment.apiV2}/sharesight/connect`, { code }).pipe(map((result) => {
16465
- this.setCache([Object.assign(this.getCacheFirst(), result)], true);
16466
- this.toastService.success(UserMessagesEnum.SHARESIGHT_CONNECTED);
16467
- return result;
16468
- }), catchError((error) => {
16469
- if (error.status === 503) {
16470
- this.toastService.error(UserMessagesEnum.SHARESIGHT_ERROR);
16471
- }
16472
- return throwError(() => error);
16473
- }));
16474
- }
16475
- disconnectSharesight() {
16476
- return this.http.post(`${this.environment.apiV2}/sharesight/disconnect`, {}).pipe(map(() => {
16477
- this.refreshCache();
16478
- this.toastService.success(UserMessagesEnum.SHARESIGHT_DISCONNECTED);
16479
- }), catchError((error) => this.handleError(error)));
16480
- }
16481
16523
  skipSetupItem(item) {
16482
16524
  const user = clone(this.getCacheFirst());
16483
16525
  user.blacklistSetupItems.push(item);
@@ -20348,6 +20390,8 @@ const ENDPOINTS = {
20348
20390
  PROPERTY_SUBSCRIPTIONS_DELETE: new Endpoint('DELETE', '\\/property-subscriptions\\/\\d+'),
20349
20391
  PROPERTY_SUBSCRIPTIONS_POST: new Endpoint('POST', '\\/property-subscriptions'),
20350
20392
  PROPERTIES_PUT: new Endpoint('PUT', '\\/properties'),
20393
+ PROPERTY_SHARESIGHT_CONNECT: new Endpoint('PUT', '\\/properties/\\d+\\/sharesight-connect'),
20394
+ PROPERTY_SHARESIGHT_DISCONNECT: new Endpoint('PUT', '\\/properties/\\d+\\/sharesight-disconnect'),
20351
20395
  PROPERTIES_CATEGORIES_EQUITY_GET: new Endpoint('GET', '\\/properties\\/categories\\/equity'),
20352
20396
  PROPERTIES_CATEGORIES_GET: new Endpoint('GET', '\\/properties\\/categories'),
20353
20397
  PROPERTIES_CATEGORIES_PUT: new Endpoint('PUT', '\\/properties\\/categories\\/\\d+'),
@@ -20459,7 +20503,9 @@ const ENDPOINTS = {
20459
20503
  USER_STATUS_PUT: new Endpoint('PUT', '\\/users\\/status'),
20460
20504
  USER_RECOVERY_PASSWORD_PUT: new Endpoint('PUT', '\\/users\\/password\\/recovery'),
20461
20505
  USER_PASSWORD_RESET_PUT: new Endpoint('PUT', '\\/password\\/reset'),
20462
- USER_SHARESIGHT_DISCONNECT: new Endpoint('POST', '\\/sharesight\\/disconnect'),
20506
+ SHARESIGHT_GET: new Endpoint('GET', '\\/sharesight-details'),
20507
+ SHARESIGHT_DELETE: new Endpoint('DELETE', '\\/sharesight-details/\\d+'),
20508
+ SHARESIGHT_PUT: new Endpoint('PUT', '\\/sharesight-details/\\d+'),
20463
20509
  VEHICLES_GET: new Endpoint('GET', '\\/vehicles'),
20464
20510
  VEHICLES_POST: new Endpoint('POST', '\\/vehicles'),
20465
20511
  VEHICLES_PUT: new Endpoint('PUT', '\\/vehicles\\/\\d+'),
@@ -24825,7 +24871,7 @@ class DepreciationForm extends TransactionBaseForm {
24825
24871
  claimStartDate: new FormControl({ value: depreciation.claimStartDate, disabled: !depreciation.chartAccounts?.isBuildingAtCost() }),
24826
24872
  });
24827
24873
  if (depreciation.id) {
24828
- this.get('claimPercent').setValue(depreciation.currentYearForecast.claimPercent);
24874
+ // this.get('claimPercent').setValue(depreciation.currentYearForecast.claimPercent);
24829
24875
  }
24830
24876
  // forbid to change chartAccounts/claimPercent for existing depreciations
24831
24877
  if (depreciation.id) {
@@ -25285,5 +25331,5 @@ var MessagesEnum;
25285
25331
  * Generated bundle index. Do not edit.
25286
25332
  */
25287
25333
 
25288
- export { AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupService, AdblockService, 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, AppPercentPipe, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AussieAppointment, AussieAppointmentForm, AussieBroker, AussieConfirmationForm, AussieService, AussieStore, AussieStoreForm, 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, DateRange, 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 };
25334
+ export { AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupService, AdblockService, 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, AppPercentPipe, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AussieAppointment, AussieAppointmentForm, AussieBroker, AussieConfirmationForm, AussieService, AussieStore, AussieStoreForm, 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, DateRange, 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, SharesightDetails, SharesightDetailsMessagesEnum, SharesightDetailsService, 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 };
25289
25335
  //# sourceMappingURL=taxtank-core.mjs.map