taxtank-core 0.33.7 → 0.33.8

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 (27) hide show
  1. package/esm2022/src/lib/collections/depreciation.collection.mjs +10 -4
  2. package/esm2022/src/lib/collections/exportable.collection.mjs +2 -6
  3. package/esm2022/src/lib/collections/transaction/index.mjs +2 -1
  4. package/esm2022/src/lib/collections/transaction/transaction-base.collection.mjs +4 -0
  5. package/esm2022/src/lib/collections/transaction/transaction.collection.mjs +3 -3
  6. package/esm2022/src/lib/forms/transaction/transaction-base-filter.form.mjs +7 -2
  7. package/esm2022/src/lib/models/report/report.interface.mjs +1 -1
  8. package/esm2022/src/lib/models/report/reports.const.mjs +107 -72
  9. package/esm2022/src/lib/models/user/user.mjs +18 -28
  10. package/esm2022/src/lib/services/http/holding/holding-sale.service.mjs +3 -1
  11. package/esm2022/src/lib/services/http/property/property-sale/property-sale.service.mjs +3 -1
  12. package/esm2022/src/lib/services/http/property/property.service.mjs +3 -2
  13. package/fesm2022/taxtank-core.mjs +145 -108
  14. package/fesm2022/taxtank-core.mjs.map +1 -1
  15. package/package.json +1 -1
  16. package/src/lib/collections/depreciation.collection.d.ts +5 -2
  17. package/src/lib/collections/exportable.collection.d.ts +2 -2
  18. package/src/lib/collections/transaction/index.d.ts +1 -0
  19. package/src/lib/collections/transaction/transaction-base.collection.d.ts +4 -0
  20. package/src/lib/collections/transaction/transaction.collection.d.ts +2 -2
  21. package/src/lib/forms/transaction/transaction-base-filter.form.d.ts +3 -2
  22. package/src/lib/models/report/report.interface.d.ts +4 -3
  23. package/src/lib/models/report/reports.const.d.ts +2 -2
  24. package/src/lib/models/user/user.d.ts +2 -14
  25. package/src/lib/services/http/holding/holding-sale.service.d.ts +2 -0
  26. package/src/lib/services/http/property/property-sale/property-sale.service.d.ts +2 -0
  27. package/src/lib/services/http/property/property.service.d.ts +2 -0
@@ -2127,11 +2127,7 @@ class ExportableCollection extends Collection {
2127
2127
  return [];
2128
2128
  }
2129
2129
  getBodyAoa(exportData) {
2130
- return exportData.body.map(row => {
2131
- return row.map(cell => {
2132
- return cell.value;
2133
- });
2134
- });
2130
+ return exportData.body.map(row => row.map(cell => cell.value));
2135
2131
  }
2136
2132
  export(params) {
2137
2133
  return plainToClass(ExportDataTable, {
@@ -5522,6 +5518,22 @@ class User extends User$1 {
5522
5518
  roles = flatten(roles.map((role) => USER_ROLES[role]));
5523
5519
  return !!intersection(this.roles, roles).length;
5524
5520
  }
5521
+ getTankTypes() {
5522
+ const tankTypes = [];
5523
+ if (this.roles.includes(UserRolesEnum.WORK_TANK)) {
5524
+ tankTypes.push(TankTypeEnum.WORK);
5525
+ }
5526
+ if (this.roles.includes(UserRolesEnum.PROPERTY_TANK)) {
5527
+ tankTypes.push(TankTypeEnum.PROPERTY);
5528
+ }
5529
+ if (this.roles.includes(UserRolesEnum.SOLE_TANK)) {
5530
+ tankTypes.push(TankTypeEnum.SOLE);
5531
+ }
5532
+ if (this.roles.includes(UserRolesEnum.HOLDING_TANK)) {
5533
+ tankTypes.push(TankTypeEnum.HOLDING);
5534
+ }
5535
+ return tankTypes;
5536
+ }
5525
5537
  isOnboarding() {
5526
5538
  return this.status === UserStatusEnum.ON_BOARDING;
5527
5539
  }
@@ -5561,33 +5573,6 @@ class User extends User$1 {
5561
5573
  isManager() {
5562
5574
  return this.roles.includes(UserRolesEnum.FIRM_MANAGER) || this.roles.includes(UserRolesEnum.FIRM_TOP_MANAGER) || this.roles.includes(UserRolesEnum.FIRM_OWNER);
5563
5575
  }
5564
- /**
5565
- * check if user has property tank access
5566
- */
5567
- hasPropertyTank() {
5568
- return this.roles ?
5569
- this.roles.includes(UserRolesEnum.PROPERTY_TANK) :
5570
- !!this.getSubscriptionRole(UserRolesEnum.PROPERTY_TANK);
5571
- }
5572
- /**
5573
- * check if user has property tank access
5574
- */
5575
- hasWorkTank() {
5576
- return this.roles ?
5577
- this.roles.includes(UserRolesEnum.WORK_TANK) :
5578
- !!this.getSubscriptionRole(UserRolesEnum.WORK_TANK);
5579
- }
5580
- /**
5581
- * Get user subscription role by provided role type
5582
- * @param roleType by which role should be returned
5583
- */
5584
- getSubscriptionRole(roleType) {
5585
- /**
5586
- * Add @TODO for Alex to check if we should use getLastSubscription here
5587
- */
5588
- return this.activeSubscription?.items
5589
- .find((subscriptionItem) => subscriptionItem.price.product.role.includes(roleType));
5590
- }
5591
5576
  isCurrentFinancialYear() {
5592
5577
  return new FinancialYear(new Date()).year === this.financialYear;
5593
5578
  }
@@ -6923,10 +6908,13 @@ __decorate([
6923
6908
  Expose()
6924
6909
  ], DepreciationLvpReportItem.prototype, "assetType", void 0);
6925
6910
 
6911
+ class TransactionBaseCollection extends ExportableCollection {
6912
+ }
6913
+
6926
6914
  /**
6927
6915
  * Collection of transactions
6928
6916
  */
6929
- class TransactionCollection extends ExportableCollection {
6917
+ class TransactionCollection extends TransactionBaseCollection {
6930
6918
  /**
6931
6919
  * we use depreciations as expense transactions a lot
6932
6920
  */
@@ -7182,7 +7170,7 @@ class TransactionAllocationCollection extends Collection {
7182
7170
  }
7183
7171
  }
7184
7172
 
7185
- class DepreciationCollection extends Collection {
7173
+ class DepreciationCollection extends TransactionBaseCollection {
7186
7174
  getSoleDepreciations() {
7187
7175
  return this.filter((depreciation) => depreciation.isSoleTank());
7188
7176
  }
@@ -7227,7 +7215,7 @@ class DepreciationCollection extends Collection {
7227
7215
  return new DepreciationCollection(this.items.filter((depreciation) => !depreciation.isBorrowingExpense()));
7228
7216
  }
7229
7217
  getByChartAccountsCategories(categories) {
7230
- return this.create(this.items.filter((depreciation) => categories.includes(depreciation.chartAccounts.category)));
7218
+ return this.filterBy('chartAccounts.category', categories);
7231
7219
  }
7232
7220
  getAssets() {
7233
7221
  return this.filter((depreciation) => depreciation.isAsset());
@@ -7278,6 +7266,12 @@ class DepreciationCollection extends Collection {
7278
7266
  // work tank may have only one vehicle claim, so we need to filter by tank type
7279
7267
  : this.getVehicleDepreciations().filterBy('tankType', TankTypeEnum.WORK);
7280
7268
  }
7269
+ getExportBody(params) {
7270
+ return [];
7271
+ }
7272
+ getExportHeader() {
7273
+ return [];
7274
+ }
7281
7275
  }
7282
7276
 
7283
7277
  /**
@@ -8128,76 +8122,112 @@ class VehicleExpense extends AbstractModel {
8128
8122
  }
8129
8123
  }
8130
8124
 
8131
- const REPORTS = new Collection([
8132
- // @TODO TT-4385
8133
- // {
8134
- // title: 'Income & Expense Report',
8135
- // description: 'Income and expense report with prior year comparison and monthly view option. Filter by Tank, property, business or personal categories',
8136
- // route: './income-expense',
8137
- // roles: [UserRolesEnum.CLIENT],
8138
- // },
8139
- {
8140
- title: 'Transactions Report',
8141
- description: 'Detailed report of the transactions allocated to each category. Filter by tank, property, business or your own search criteria',
8142
- route: './transactions',
8143
- roles: [UserRolesEnum.CLIENT]
8144
- },
8145
- {
8146
- title: 'MyTax Report',
8147
- description: 'Coded to the ATO\'s MyTax report, our interactive report enable you to self lodge faster, easier and more accurately online without the stress',
8148
- route: './my-tax',
8149
- roles: [UserRolesEnum.CLIENT]
8150
- },
8151
- // @TODO TT-4386
8152
- {
8153
- title: 'Net Asset',
8154
- description: 'See your current net financial position, including a breakdown of net assets and liabilities across all tanks',
8155
- route: './net-assets',
8156
- roles: [UserRolesEnum.CLIENT]
8157
- },
8158
- {
8159
- title: 'Property Schedule',
8160
- description: 'Compliant property schedule detailing incomes, expenses and depreciation for each property and ownership percentage',
8161
- route: './property-transactions',
8162
- roles: [UserRolesEnum.PROPERTY_TANK]
8163
- },
8164
- {
8165
- title: 'Depreciation Report',
8166
- description: 'Register of building & improvements depreciation (capital works) and plant & equipment depreciation for each property',
8167
- route: './depreciation',
8168
- roles: [UserRolesEnum.WORK_TANK, UserRolesEnum.PROPERTY_TANK, UserRolesEnum.SOLE_TANK]
8169
- },
8170
- {
8171
- title: 'Low Value Pool Report',
8172
- description: 'Register of new assets valued between $301 and $1,000 and existing assets that fall below the $1,000 threshold',
8173
- route: './low-value-pool',
8174
- roles: [UserRolesEnum.WORK_TANK, UserRolesEnum.PROPERTY_TANK, UserRolesEnum.SOLE_TANK]
8175
- },
8176
- {
8177
- title: 'CGT Report',
8178
- description: 'Calculate net capital gains across all asset classes, including the application of losses and eligible concessions',
8179
- route: './cgt',
8180
- roles: [UserRolesEnum.PROPERTY_TANK, UserRolesEnum.HOLDING_TANK]
8181
- },
8182
- {
8183
- title: 'Motor Vehicle Report',
8184
- description: 'Displays work-related vehicle expenses based upon your logbook claim method or percentage',
8185
- route: './vehicle-expenses',
8186
- roles: [UserRolesEnum.WORK_TANK, UserRolesEnum.SOLE_TANK]
8187
- },
8188
- {
8189
- title: 'Business Schedule',
8190
- description: 'Compliant schedule detailing profit and loss for each primary and non-primary production business',
8191
- route: './business-schedule',
8192
- roles: [UserRolesEnum.SOLE_TANK]
8193
- },
8194
- {
8195
- title: 'BAS Report',
8196
- description: 'Summarises your GST obligations from applicable sales and purchases to enable accurate ATO lodgements',
8197
- route: './bas',
8198
- roles: [UserRolesEnum.SOLE_TANK]
8199
- },
8200
- ]);
8125
+ const REPORTS = {
8126
+ [UserRolesEnum.CLIENT]: [
8127
+ // @TODO TT-4385
8128
+ // {
8129
+ // title: 'Income & Expense Report',
8130
+ // description: 'Income and expense report with prior year comparison and monthly view option. Filter by Tank, property, business or personal categories.',
8131
+ // routerLink: './income-expense',
8132
+ // },
8133
+ {
8134
+ title: 'Transactions Report',
8135
+ description: 'Detailed report of the transactions allocated to each category. Filter by tank, property, business or your own search criteria.',
8136
+ routerLink: './transactions',
8137
+ },
8138
+ {
8139
+ title: 'MyTax Report',
8140
+ description: 'Coded to the ATO\'s MyTax report, our interactive report enable you to self lodge faster, easier and more accurately online without the stress.',
8141
+ routerLink: './my-tax',
8142
+ },
8143
+ {
8144
+ title: 'Net Asset',
8145
+ description: 'See your current net financial position, including a breakdown of net assets and liabilities across all tanks.',
8146
+ routerLink: './net-assets',
8147
+ },
8148
+ ],
8149
+ [UserRolesEnum.WORK_TANK]: [
8150
+ {
8151
+ title: 'Motor Vehicle Report',
8152
+ description: 'Displays work-related vehicle expenses based upon your logbook claim method or percentage.',
8153
+ routerLink: './vehicle-expenses',
8154
+ queryParams: { tankType: 2 }
8155
+ },
8156
+ {
8157
+ title: 'Depreciation Report',
8158
+ description: 'Register of plant & equipment depreciation including vehicles and work-related assets over $300.',
8159
+ routerLink: './depreciation',
8160
+ queryParams: { tankType: 2 }
8161
+ },
8162
+ {
8163
+ title: 'Low Value Pool Report',
8164
+ description: 'Register of new assets valued between $301 and $1,000 and existing assets that fall below the $1,000 threshold.',
8165
+ routerLink: './low-value-pool',
8166
+ queryParams: { tankType: 2 }
8167
+ },
8168
+ ],
8169
+ [UserRolesEnum.PROPERTY_TANK]: [
8170
+ {
8171
+ title: 'Property Schedule',
8172
+ description: 'Compliant property schedule detailing incomes, expenses and depreciation for each property and ownership percentage.',
8173
+ routerLink: './property-transactions',
8174
+ },
8175
+ {
8176
+ title: 'Depreciation Report',
8177
+ description: 'Register of building & improvements depreciation (capital works) and plant & equipment depreciation for each property.',
8178
+ routerLink: './depreciation',
8179
+ queryParams: { tankType: 1 }
8180
+ },
8181
+ {
8182
+ title: 'Low Value Pool Report',
8183
+ description: 'Register of new assets valued between $301 and $1,000 and existing assets that fall below the $1,000 threshold.',
8184
+ routerLink: './low-value-pool',
8185
+ queryParams: { tankType: 1 }
8186
+ },
8187
+ {
8188
+ title: 'CGT Report',
8189
+ description: 'Calculate net capital gains across all asset classes, including the application of losses and eligible concessions.',
8190
+ routerLink: './cgt/property',
8191
+ },
8192
+ ],
8193
+ [UserRolesEnum.SOLE_TANK]: [
8194
+ {
8195
+ title: 'Business Schedule',
8196
+ description: 'Compliant schedule detailing profit and loss for each primary and non-primary production business.',
8197
+ routerLink: './business-schedule',
8198
+ },
8199
+ {
8200
+ title: 'Motor Vehicle Report',
8201
+ description: 'Displays work-related vehicle expenses based upon your logbook claim method or percentage.',
8202
+ routerLink: './vehicle-expenses',
8203
+ queryParams: { tankType: 4 }
8204
+ },
8205
+ {
8206
+ title: 'Depreciation Report',
8207
+ description: 'Track small business pool depreciation, instant asset write-offs and plant & equipment.',
8208
+ routerLink: './depreciation',
8209
+ queryParams: { tankType: 4 }
8210
+ },
8211
+ {
8212
+ title: 'Low Value Pool Report',
8213
+ description: 'Register of new assets valued between $301 and $1,000 and existing assets that fall below the $1,000 threshold.',
8214
+ routerLink: './low-value-pool',
8215
+ queryParams: { tankType: 4 }
8216
+ },
8217
+ {
8218
+ title: 'BAS Report',
8219
+ description: 'Summarises your GST obligations from applicable sales and purchases to enable accurate ATO lodgements.',
8220
+ routerLink: './bas',
8221
+ },
8222
+ ],
8223
+ [UserRolesEnum.HOLDING_TANK]: [
8224
+ {
8225
+ title: 'CGT Report',
8226
+ description: 'Calculate net capital gains across all asset classes, including the application of losses and eligible concessions.',
8227
+ routerLink: './cgt/holding',
8228
+ },
8229
+ ],
8230
+ };
8201
8231
 
8202
8232
  /**
8203
8233
  * Base collection to work with property report items
@@ -13693,6 +13723,7 @@ class PropertySaleService extends RestService$1 {
13693
13723
  this.collectionClass = PropertySaleCollection;
13694
13724
  this.endpointUri = 'properties/sales';
13695
13725
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
13726
+ this.roles = [UserRolesEnum.PROPERTY_TANK];
13696
13727
  }
13697
13728
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
13698
13729
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PropertySaleService, providedIn: 'root' }); }
@@ -13800,7 +13831,6 @@ var PropertyMessagesEnum;
13800
13831
  * Service for work with Property
13801
13832
  */
13802
13833
  class PropertyService extends RestService$1 {
13803
- // roles = [UserRolesEnum.PROPERTY_TANK];
13804
13834
  constructor(environment) {
13805
13835
  super(environment);
13806
13836
  this.environment = environment;
@@ -13808,6 +13838,7 @@ class PropertyService extends RestService$1 {
13808
13838
  this.collectionClass = PropertyCollection;
13809
13839
  this.endpointUri = 'properties';
13810
13840
  this.disabledMethods = ['deleteBatch'];
13841
+ this.roles = [UserRolesEnum.PROPERTY_TANK];
13811
13842
  this.listenEvents();
13812
13843
  }
13813
13844
  /**
@@ -15931,6 +15962,7 @@ class HoldingSaleService extends RestService$1 {
15931
15962
  this.collectionClass = HoldingSaleCollection;
15932
15963
  this.endpointUri = 'holding-sales';
15933
15964
  this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
15965
+ this.roles = [UserRolesEnum.HOLDING_TANK];
15934
15966
  }
15935
15967
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
15936
15968
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: HoldingSaleService, providedIn: 'root' }); }
@@ -23792,10 +23824,11 @@ class HoldingIncomeForm extends WorkTransactionForm {
23792
23824
  }
23793
23825
 
23794
23826
  class TransactionBaseFilterForm extends FormGroup {
23795
- constructor(tankType, business) {
23827
+ constructor(tankType, business, properties) {
23796
23828
  super({
23797
23829
  tankType: new FormControl(tankType),
23798
23830
  business: new FormControl({ value: business, disabled: true }),
23831
+ properties: new FormControl({ value: properties, disabled: true }),
23799
23832
  dateFrom: new FormControl(),
23800
23833
  dateTo: new FormControl(),
23801
23834
  });
@@ -23804,6 +23837,7 @@ class TransactionBaseFilterForm extends FormGroup {
23804
23837
  listenEvents() {
23805
23838
  this.get('tankType').valueChanges.subscribe(tankType => {
23806
23839
  tankType === TankTypeEnum.SOLE ? this.get('business').enable() : this.get('business').disable();
23840
+ tankType === TankTypeEnum.PROPERTY ? this.get('properties').enable() : this.get('properties').disable();
23807
23841
  });
23808
23842
  }
23809
23843
  filter(collection) {
@@ -23820,6 +23854,9 @@ class TransactionBaseFilterForm extends FormGroup {
23820
23854
  if (value.business) {
23821
23855
  collection = collection.filterBy('business.id', value.business.id);
23822
23856
  }
23857
+ if (value.properties) {
23858
+ collection = collection.filterBy('property.id', value.properties.map(property => property.id));
23859
+ }
23823
23860
  return collection;
23824
23861
  }
23825
23862
  }
@@ -24165,5 +24202,5 @@ var MessagesEnum;
24165
24202
  * Generated bundle index. Do not edit.
24166
24203
  */
24167
24204
 
24168
- 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, BANK_ACCOUNT_TYPES, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, 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, 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, ChartAccountsInvoiceEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsUnallocatableListEnum, ChartAccountsValue, 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, 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, HeaderTitleService, Holding, HoldingCollection, HoldingForm, HoldingImport, HoldingImportForm, HoldingImportMessagesEnum, HoldingImportService, HoldingIncomeForm, HoldingMessagesEnum, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleForm, HoldingSaleMessagesEnum, HoldingSaleService, HoldingService, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, 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, 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, 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, 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, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessLossesCollection, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, 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, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, 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, minDateValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
24205
+ 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, BANK_ACCOUNT_TYPES, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, 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, 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, ChartAccountsInvoiceEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsUnallocatableListEnum, ChartAccountsValue, 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, 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, HeaderTitleService, Holding, HoldingCollection, HoldingForm, HoldingImport, HoldingImportForm, HoldingImportMessagesEnum, HoldingImportService, HoldingIncomeForm, HoldingMessagesEnum, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleForm, HoldingSaleMessagesEnum, HoldingSaleService, HoldingService, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, 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, 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, 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, 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, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessLossesCollection, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, 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, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseCollection, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, 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, minDateValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
24169
24206
  //# sourceMappingURL=taxtank-core.mjs.map