taxtank-core 0.32.107 → 0.32.109
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.
- package/esm2022/lib/collections/report/property/property-report-item-depreciation.collection.mjs +2 -2
- package/esm2022/lib/collections/report/property/property-report-item-transaction.collection.mjs +2 -2
- package/esm2022/lib/collections/report/property/property-report-item.collection.mjs +1 -1
- package/esm2022/lib/db/Enums/bank/bank-connection-status.enum.mjs +2 -1
- package/esm2022/lib/forms/transaction/index.mjs +2 -2
- package/esm2022/lib/forms/transaction/transaction-base-filter.form.mjs +35 -0
- package/esm2022/lib/models/bank/bank-connection.mjs +4 -1
- package/esm2022/lib/models/report/property/property-report-item-transaction.mjs +1 -1
- package/esm2022/lib/services/http/bank/bank-connection/bank-connection-messages.enum.mjs +2 -1
- package/esm2022/lib/services/http/bank/basiq/basiq.service.mjs +7 -4
- package/esm2022/lib/services/http/income-source/income-source.service.mjs +2 -1
- package/esm2022/lib/services/http/income-source/sole-forecast/sole-forecast.service.mjs +4 -1
- package/esm2022/lib/services/report/property/property-transaction-report.service.mjs +12 -3
- package/fesm2022/taxtank-core.mjs +134 -113
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/lib/collections/report/property/property-report-item-depreciation.collection.d.ts +2 -2
- package/lib/collections/report/property/property-report-item-transaction.collection.d.ts +3 -3
- package/lib/collections/report/property/property-report-item.collection.d.ts +1 -1
- package/lib/db/Enums/bank/bank-connection-status.enum.d.ts +1 -0
- package/lib/forms/transaction/index.d.ts +1 -1
- package/lib/forms/transaction/transaction-base-filter.form.d.ts +19 -0
- package/lib/models/bank/bank-connection.d.ts +1 -0
- package/lib/models/report/property/property-report-item-transaction.d.ts +3 -3
- package/lib/services/http/bank/bank-connection/bank-connection-messages.enum.d.ts +1 -0
- package/lib/services/http/bank/basiq/basiq.service.d.ts +1 -2
- package/lib/services/report/property/property-transaction-report.service.d.ts +4 -3
- package/package.json +1 -1
- package/esm2022/lib/forms/transaction/transaction-filter.form.mjs +0 -35
- package/lib/forms/transaction/transaction-filter.form.d.ts +0 -18
@@ -988,6 +988,7 @@ var BankConnectionStatusEnum;
|
|
988
988
|
(function (BankConnectionStatusEnum) {
|
989
989
|
BankConnectionStatusEnum[BankConnectionStatusEnum["PENDING"] = 1] = "PENDING";
|
990
990
|
BankConnectionStatusEnum[BankConnectionStatusEnum["ACTIVE"] = 2] = "ACTIVE";
|
991
|
+
BankConnectionStatusEnum[BankConnectionStatusEnum["INVALID"] = 3] = "INVALID";
|
991
992
|
BankConnectionStatusEnum[BankConnectionStatusEnum["RECONNECTING"] = 4] = "RECONNECTING";
|
992
993
|
})(BankConnectionStatusEnum || (BankConnectionStatusEnum = {}));
|
993
994
|
|
@@ -7341,112 +7342,6 @@ class DepreciationReportItemCollection extends DepreciationCollection {
|
|
7341
7342
|
}
|
7342
7343
|
}
|
7343
7344
|
|
7344
|
-
/**
|
7345
|
-
* Class with property transactions report entities
|
7346
|
-
*/
|
7347
|
-
class PropertyReportItem extends AbstractModel {
|
7348
|
-
constructor(property, chartAccounts) {
|
7349
|
-
super();
|
7350
|
-
this.chartAccounts = chartAccounts;
|
7351
|
-
this.propertyId = property.id;
|
7352
|
-
this.claimPercent = property.claimPercent;
|
7353
|
-
this.sharePercent = property.sharePercent;
|
7354
|
-
this.subCode = chartAccounts.taxReturnItem?.subCode;
|
7355
|
-
this.description = chartAccounts.name;
|
7356
|
-
}
|
7357
|
-
get claimAmount() {
|
7358
|
-
return round(this.amount * (this.claimPercent / 100), 2);
|
7359
|
-
}
|
7360
|
-
get shareClaimAmount() {
|
7361
|
-
return this.claimAmount * (this.sharePercent / 100);
|
7362
|
-
}
|
7363
|
-
isIncome() {
|
7364
|
-
return CHART_ACCOUNTS_CATEGORIES.income.includes(this.chartAccounts.category);
|
7365
|
-
}
|
7366
|
-
isExpense() {
|
7367
|
-
return CHART_ACCOUNTS_CATEGORIES.expense.includes(this.chartAccounts.category);
|
7368
|
-
}
|
7369
|
-
}
|
7370
|
-
|
7371
|
-
/**
|
7372
|
-
* Const with labels based on depreciation type
|
7373
|
-
*/
|
7374
|
-
const DEPRECIATION_TYPE_LABELS = {
|
7375
|
-
1: 'Plant & Equipment',
|
7376
|
-
2: 'Building & Improvements'
|
7377
|
-
};
|
7378
|
-
/**
|
7379
|
-
* Class with depreciation-based property transactions report entities
|
7380
|
-
*/
|
7381
|
-
class PropertyReportItemDepreciation extends PropertyReportItem {
|
7382
|
-
constructor(depreciations, property, chartAccounts) {
|
7383
|
-
super(property, chartAccounts);
|
7384
|
-
this.amount = Math.abs(depreciations.getCurrentYearForecastAmount());
|
7385
|
-
this.description = DEPRECIATION_TYPE_LABELS[depreciations.first.type];
|
7386
|
-
}
|
7387
|
-
}
|
7388
|
-
|
7389
|
-
/**
|
7390
|
-
* Base collection to work with property report items
|
7391
|
-
*/
|
7392
|
-
class PropertyReportItemCollection extends Collection {
|
7393
|
-
getIncomes() {
|
7394
|
-
return this.create(this.items.filter((item) => item.isIncome()));
|
7395
|
-
}
|
7396
|
-
getExpenses() {
|
7397
|
-
return this.create(this.items.filter((item) => item.isExpense()));
|
7398
|
-
}
|
7399
|
-
}
|
7400
|
-
|
7401
|
-
/**
|
7402
|
-
* Collection to work with depreciation-based property report items
|
7403
|
-
*/
|
7404
|
-
class PropertyReportItemDepreciationCollection extends PropertyReportItemCollection {
|
7405
|
-
constructor(depreciations, properties, chartAccounts) {
|
7406
|
-
super();
|
7407
|
-
this.setItems(depreciations, properties, chartAccounts);
|
7408
|
-
}
|
7409
|
-
setItems(depreciations, properties, chartAccounts) {
|
7410
|
-
this.items = [];
|
7411
|
-
properties.items.forEach((property) => {
|
7412
|
-
const depreciationsByType = depreciations.filterBy('property.id', property.id).groupBy('type');
|
7413
|
-
depreciationsByType.keys.map((type) => {
|
7414
|
-
this.items.push(new PropertyReportItemDepreciation(depreciationsByType.get(type), property, chartAccounts.findBy('id', depreciationsByType.get(type).first.chartAccounts.id)));
|
7415
|
-
});
|
7416
|
-
});
|
7417
|
-
}
|
7418
|
-
}
|
7419
|
-
|
7420
|
-
/**
|
7421
|
-
* Class with transaction-based property transactions report entities
|
7422
|
-
*/
|
7423
|
-
class PropertyReportItemTransaction extends PropertyReportItem {
|
7424
|
-
constructor(transactions, property, chartAccounts) {
|
7425
|
-
super(property, chartAccounts);
|
7426
|
-
this.amount = Math.abs(transactions.sumBy('grossAmount'));
|
7427
|
-
this.description = chartAccounts.name;
|
7428
|
-
}
|
7429
|
-
}
|
7430
|
-
|
7431
|
-
/**
|
7432
|
-
* Collection to work with transaction-based property report items
|
7433
|
-
*/
|
7434
|
-
class PropertyReportItemTransactionCollection extends PropertyReportItemCollection {
|
7435
|
-
constructor(transactions, properties, chartAccounts) {
|
7436
|
-
super();
|
7437
|
-
this.setItems(transactions, properties, chartAccounts);
|
7438
|
-
}
|
7439
|
-
setItems(transactions, properties, chartAccounts) {
|
7440
|
-
this.items = [];
|
7441
|
-
properties.items.forEach((property) => {
|
7442
|
-
const transactionsDictionary = transactions.getByPropertiesIds([property.id]).groupBy('chartAccounts.id');
|
7443
|
-
transactionsDictionary.keys.map((chartAccountId) => {
|
7444
|
-
this.items.push(new PropertyReportItemTransaction(transactionsDictionary.get(chartAccountId), property, chartAccounts.findBy('id', +chartAccountId)));
|
7445
|
-
});
|
7446
|
-
});
|
7447
|
-
}
|
7448
|
-
}
|
7449
|
-
|
7450
7345
|
/**
|
7451
7346
|
* Enum with type of business for My Tax report
|
7452
7347
|
* https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/4644110466/Tax+Return+MyTax+-+Online+Form
|
@@ -8168,6 +8063,62 @@ const atoLinks = {
|
|
8168
8063
|
* 'My Tax' report related data (classes, enums, const, e.t.c)
|
8169
8064
|
*/
|
8170
8065
|
|
8066
|
+
/**
|
8067
|
+
* Class with property transactions report entities
|
8068
|
+
*/
|
8069
|
+
class PropertyReportItem extends AbstractModel {
|
8070
|
+
constructor(property, chartAccounts) {
|
8071
|
+
super();
|
8072
|
+
this.chartAccounts = chartAccounts;
|
8073
|
+
this.propertyId = property.id;
|
8074
|
+
this.claimPercent = property.claimPercent;
|
8075
|
+
this.sharePercent = property.sharePercent;
|
8076
|
+
this.subCode = chartAccounts.taxReturnItem?.subCode;
|
8077
|
+
this.description = chartAccounts.name;
|
8078
|
+
}
|
8079
|
+
get claimAmount() {
|
8080
|
+
return round(this.amount * (this.claimPercent / 100), 2);
|
8081
|
+
}
|
8082
|
+
get shareClaimAmount() {
|
8083
|
+
return this.claimAmount * (this.sharePercent / 100);
|
8084
|
+
}
|
8085
|
+
isIncome() {
|
8086
|
+
return CHART_ACCOUNTS_CATEGORIES.income.includes(this.chartAccounts.category);
|
8087
|
+
}
|
8088
|
+
isExpense() {
|
8089
|
+
return CHART_ACCOUNTS_CATEGORIES.expense.includes(this.chartAccounts.category);
|
8090
|
+
}
|
8091
|
+
}
|
8092
|
+
|
8093
|
+
/**
|
8094
|
+
* Const with labels based on depreciation type
|
8095
|
+
*/
|
8096
|
+
const DEPRECIATION_TYPE_LABELS = {
|
8097
|
+
1: 'Plant & Equipment',
|
8098
|
+
2: 'Building & Improvements'
|
8099
|
+
};
|
8100
|
+
/**
|
8101
|
+
* Class with depreciation-based property transactions report entities
|
8102
|
+
*/
|
8103
|
+
class PropertyReportItemDepreciation extends PropertyReportItem {
|
8104
|
+
constructor(depreciations, property, chartAccounts) {
|
8105
|
+
super(property, chartAccounts);
|
8106
|
+
this.amount = Math.abs(depreciations.getCurrentYearForecastAmount());
|
8107
|
+
this.description = DEPRECIATION_TYPE_LABELS[depreciations.first.type];
|
8108
|
+
}
|
8109
|
+
}
|
8110
|
+
|
8111
|
+
/**
|
8112
|
+
* Class with transaction-based property transactions report entities
|
8113
|
+
*/
|
8114
|
+
class PropertyReportItemTransaction extends PropertyReportItem {
|
8115
|
+
constructor(transactions, property, chartAccounts) {
|
8116
|
+
super(property, chartAccounts);
|
8117
|
+
this.amount = Math.abs(transactions.sumBy('grossAmount'));
|
8118
|
+
this.description = chartAccounts.name;
|
8119
|
+
}
|
8120
|
+
}
|
8121
|
+
|
8171
8122
|
/**
|
8172
8123
|
* Class with business loss details
|
8173
8124
|
* https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/4641357930/Rules+when+a+business+makes+a+loss+Tax+Summary
|
@@ -8198,6 +8149,56 @@ class VehicleExpense extends AbstractModel {
|
|
8198
8149
|
}
|
8199
8150
|
}
|
8200
8151
|
|
8152
|
+
/**
|
8153
|
+
* Base collection to work with property report items
|
8154
|
+
*/
|
8155
|
+
class PropertyReportItemCollection extends Collection {
|
8156
|
+
getIncomes() {
|
8157
|
+
return this.create(this.items.filter((item) => item.isIncome()));
|
8158
|
+
}
|
8159
|
+
getExpenses() {
|
8160
|
+
return this.create(this.items.filter((item) => item.isExpense()));
|
8161
|
+
}
|
8162
|
+
}
|
8163
|
+
|
8164
|
+
/**
|
8165
|
+
* Collection to work with depreciation-based property report items
|
8166
|
+
*/
|
8167
|
+
class PropertyReportItemDepreciationCollection extends PropertyReportItemCollection {
|
8168
|
+
constructor(depreciations, properties, chartAccounts) {
|
8169
|
+
super();
|
8170
|
+
this.setItems(depreciations, properties, chartAccounts);
|
8171
|
+
}
|
8172
|
+
setItems(depreciations, properties, chartAccounts) {
|
8173
|
+
this.items = [];
|
8174
|
+
properties.items.forEach((property) => {
|
8175
|
+
const depreciationsByType = depreciations.filterBy('property.id', property.id).groupBy('type');
|
8176
|
+
depreciationsByType.keys.map((type) => {
|
8177
|
+
this.items.push(new PropertyReportItemDepreciation(depreciationsByType.get(type), property, chartAccounts.findBy('id', depreciationsByType.get(type).first.chartAccounts.id)));
|
8178
|
+
});
|
8179
|
+
});
|
8180
|
+
}
|
8181
|
+
}
|
8182
|
+
|
8183
|
+
/**
|
8184
|
+
* Collection to work with transaction-based property report items
|
8185
|
+
*/
|
8186
|
+
class PropertyReportItemTransactionCollection extends PropertyReportItemCollection {
|
8187
|
+
constructor(transactions, properties, chartAccounts) {
|
8188
|
+
super();
|
8189
|
+
this.setItems(transactions, properties, chartAccounts);
|
8190
|
+
}
|
8191
|
+
setItems(transactions, properties, chartAccounts) {
|
8192
|
+
this.items = [];
|
8193
|
+
properties.items.forEach((property) => {
|
8194
|
+
const transactionsDictionary = transactions.getByPropertiesIds([property.id]).groupBy('chartAccounts.id');
|
8195
|
+
transactionsDictionary.keys.map((chartAccountId) => {
|
8196
|
+
this.items.push(new PropertyReportItemTransaction(transactionsDictionary.get(chartAccountId), property, chartAccounts.findBy('id', +chartAccountId)));
|
8197
|
+
});
|
8198
|
+
});
|
8199
|
+
}
|
8200
|
+
}
|
8201
|
+
|
8201
8202
|
class VehicleExpenseCollection extends Collection {
|
8202
8203
|
constructor(transactions, depreciations) {
|
8203
8204
|
super();
|
@@ -9618,6 +9619,9 @@ class BankConnection extends BankConnection$1 {
|
|
9618
9619
|
isPending() {
|
9619
9620
|
return this.status === BankConnectionStatusEnum.PENDING;
|
9620
9621
|
}
|
9622
|
+
isInvalid() {
|
9623
|
+
return this.status === BankConnectionStatusEnum.INVALID;
|
9624
|
+
}
|
9621
9625
|
isActive() {
|
9622
9626
|
return this.status === BankConnectionStatusEnum.ACTIVE;
|
9623
9627
|
}
|
@@ -11409,6 +11413,7 @@ var BankConnectionMessagesEnum;
|
|
11409
11413
|
BankConnectionMessagesEnum["CONFIRM_DEACTIVATE"] = "We are unable to deliver daily bank transactions to deactivated banks";
|
11410
11414
|
BankConnectionMessagesEnum["DEACTIVATED"] = "Your live bank feeds are deactivated";
|
11411
11415
|
BankConnectionMessagesEnum["RECONNECT"] = "Disconnected, There has been an issue with your bank connection. Please reconnect to continue receiving bank transactions";
|
11416
|
+
BankConnectionMessagesEnum["INVALID"] = "There has been an issue with your bank connection. Please reconnect to continue receiving bank transactions";
|
11412
11417
|
BankConnectionMessagesEnum["UPGRADE"] = "Upgrade needed from traditional feeds to an Open Banking connection to continue receiving bank transactions";
|
11413
11418
|
BankConnectionMessagesEnum["CONFIRM_UPGRADE"] = "Upgrading to open banking improves stability and data integrity";
|
11414
11419
|
BankConnectionMessagesEnum["AUTOMATE"] = "Upgrade from manual imports to an Open Banking connection to receive daily bank transactions";
|
@@ -11722,10 +11727,13 @@ class BasiqService extends RestService$1 {
|
|
11722
11727
|
}
|
11723
11728
|
/**
|
11724
11729
|
* redirect to basiq extend connection date to prolong it
|
11725
|
-
* @TODO TT-4230 &connectionId=${connection.id}
|
11726
11730
|
*/
|
11727
|
-
|
11728
|
-
|
11731
|
+
reauthoriseConnection(token, connection) {
|
11732
|
+
let url = `${BasiqService.basiqConsentUrl}?token=${token}&action=reauthorise`;
|
11733
|
+
if (connection.isExpiring()) {
|
11734
|
+
url += `&connectionId=${connection.id}`;
|
11735
|
+
}
|
11736
|
+
window.location.replace(url);
|
11729
11737
|
}
|
11730
11738
|
/**
|
11731
11739
|
* Open basiq consent ui to allow user to manage basiq access to his bank data
|
@@ -13311,9 +13319,12 @@ class SoleForecastService extends RestService {
|
|
13311
13319
|
* Listen to EventDispatcherService event related to updated Income Sources
|
13312
13320
|
*/
|
13313
13321
|
listenToUpdatedIncomeSources() {
|
13322
|
+
// return;
|
13314
13323
|
this.eventDispatcherService.on(AppEventTypeEnum.INCOME_SOURCES_UPDATED)
|
13315
13324
|
.subscribe((incomeSources) => {
|
13316
13325
|
const soleForecasts = this.assignSoleForecasts(incomeSources);
|
13326
|
+
// console.log(soleForecasts);
|
13327
|
+
// console.log(incomeSources);
|
13317
13328
|
if (soleForecasts.length) {
|
13318
13329
|
const method = soleForecasts[0].id ? 'updateBatch' : 'addBatch';
|
13319
13330
|
this[method](soleForecasts).subscribe((updatedSoleForecasts) => {
|
@@ -13400,6 +13411,7 @@ class IncomeSourceService extends RestService {
|
|
13400
13411
|
* Update batch of income sources
|
13401
13412
|
*/
|
13402
13413
|
updateBatch(incomeSources, queryParams = {}) {
|
13414
|
+
// console.log(incomeSources);
|
13403
13415
|
return this.http.put(`${this.environment.apiV2}/${this.url}`, incomeSources, queryParams)
|
13404
13416
|
.pipe(map((updatedItems) => {
|
13405
13417
|
const updatedInstances = updatedItems.map((item) => this.createModelInstance(item));
|
@@ -19261,13 +19273,22 @@ class PropertyTransactionReportService {
|
|
19261
19273
|
this.getTransactions(),
|
19262
19274
|
this.getDepreciations(),
|
19263
19275
|
this.chartAccountsService.get()
|
19264
|
-
]).pipe(map(([properties, transactions, depreciations, chartAccounts]) =>
|
19276
|
+
]).pipe(map(([properties, transactions, depreciations, chartAccounts]) => {
|
19277
|
+
this.properties = properties;
|
19278
|
+
this.transactions = transactions;
|
19279
|
+
this.depreciations = depreciations;
|
19280
|
+
this.chartAccounts = chartAccounts;
|
19281
|
+
return this.create(transactions, depreciations, properties, chartAccounts);
|
19282
|
+
}));
|
19283
|
+
}
|
19284
|
+
filter(filterForm) {
|
19285
|
+
return this.create(filterForm.filter(this.transactions), filterForm.filter(this.depreciations), this.properties, this.chartAccounts);
|
19265
19286
|
}
|
19266
19287
|
create(transactions, depreciations, properties, chartAccounts) {
|
19267
19288
|
return new PropertyReportItemCollection([
|
19268
19289
|
...new PropertyReportItemTransactionCollection(transactions, properties, chartAccounts).items,
|
19269
19290
|
...new PropertyReportItemDepreciationCollection(depreciations, properties, chartAccounts).items,
|
19270
|
-
]);
|
19291
|
+
]).sortBy('subCode', 'asc').groupBy('propertyId');
|
19271
19292
|
}
|
19272
19293
|
/**
|
19273
19294
|
* Get collection of property transactions
|
@@ -24016,7 +24037,7 @@ class HoldingIncomeForm extends WorkTransactionForm {
|
|
24016
24037
|
}
|
24017
24038
|
}
|
24018
24039
|
|
24019
|
-
class
|
24040
|
+
class TransactionBaseFilterForm extends FormGroup {
|
24020
24041
|
constructor(tankType, business) {
|
24021
24042
|
super({
|
24022
24043
|
tankType: new FormControl(tankType),
|
@@ -24365,5 +24386,5 @@ var MessagesEnum;
|
|
24365
24386
|
* Generated bundle index. Do not edit.
|
24366
24387
|
*/
|
24367
24388
|
|
24368
|
-
export { AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupService, Address, AddressForm, AddressService, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AuthService, BANK_ACCOUNT_TYPES, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, 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, 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, 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, JwtService, 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, MixpanelService, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, MyTaxBusinessDetails, MyTaxBusinessDetailsForm, MyTaxBusinessIncome, MyTaxBusinessIncomeForm, MyTaxBusinessIncomeOrLossesForm, MyTaxBusinessLosses, MyTaxBusinessLossesForm, MyTaxCgt, MyTaxCgtForm, MyTaxDeductions, MyTaxDeductionsForm, MyTaxDividends, MyTaxDividendsForm, MyTaxEstimate, MyTaxIncomeStatements, MyTaxIncomeStatementsForm, MyTaxIncomeTests, MyTaxIncomeTestsForm, MyTaxInterest, MyTaxInterestForm, MyTaxLosses, MyTaxLossesForm, MyTaxMedicareForm, MyTaxOffsets, MyTaxOffsetsForm, MyTaxOtherIncome, MyTaxOtherIncomeForm, MyTaxPartnershipsAndTrusts, MyTaxPartnershipsAndTrustsForm, MyTaxRent, MyTaxRentForm, Notification, Occupation, OccupationService, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, 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, 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, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionFilterForm, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TtCoreModule, 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, UserRolesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimDetails, VehicleClaimDetailsForm, VehicleClaimDetailsMethodEnum, VehicleClaimDetailsService, VehicleClaimForm, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, alphaSpaceValidator, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, minDateValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
|
24389
|
+
export { AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupService, Address, AddressForm, AddressService, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AuthService, BANK_ACCOUNT_TYPES, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, 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, 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, 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, JwtService, 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, MixpanelService, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, MyTaxBusinessDetails, MyTaxBusinessDetailsForm, MyTaxBusinessIncome, MyTaxBusinessIncomeForm, MyTaxBusinessIncomeOrLossesForm, MyTaxBusinessLosses, MyTaxBusinessLossesForm, MyTaxCgt, MyTaxCgtForm, MyTaxDeductions, MyTaxDeductionsForm, MyTaxDividends, MyTaxDividendsForm, MyTaxEstimate, MyTaxIncomeStatements, MyTaxIncomeStatementsForm, MyTaxIncomeTests, MyTaxIncomeTestsForm, MyTaxInterest, MyTaxInterestForm, MyTaxLosses, MyTaxLossesForm, MyTaxMedicareForm, MyTaxOffsets, MyTaxOffsetsForm, MyTaxOtherIncome, MyTaxOtherIncomeForm, MyTaxPartnershipsAndTrusts, MyTaxPartnershipsAndTrustsForm, MyTaxRent, MyTaxRentForm, Notification, Occupation, OccupationService, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, 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, 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, TtCoreModule, 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, UserRolesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimDetails, VehicleClaimDetailsForm, VehicleClaimDetailsMethodEnum, VehicleClaimDetailsService, VehicleClaimForm, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, alphaSpaceValidator, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, minDateValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
|
24369
24390
|
//# sourceMappingURL=taxtank-core.mjs.map
|