taxtank-core 0.8.6 → 0.8.7
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/bundles/taxtank-core.umd.js +94 -92
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/db/Models/transaction-base.js +2 -1
- package/esm2015/lib/services/http/address/address.service.js +39 -0
- package/esm2015/lib/services/http/bank/bank-account/bank-account.service.js +118 -0
- package/esm2015/lib/services/http/bank/bank-connection/bank-connection.service.js +52 -0
- package/esm2015/lib/services/http/bank/bank-transaction/bank-transaction.service.js +89 -0
- package/esm2015/lib/services/http/bank/bank.service.js +24 -0
- package/esm2015/lib/services/http/bank/basiq/basiq.service.js +94 -0
- package/esm2015/lib/services/http/chart-accounts/chart-accounts-depreciations/chart-accounts-depreciations.service.js +38 -0
- package/esm2015/lib/services/http/chart-accounts/chart-accounts.service.js +89 -0
- package/esm2015/lib/services/http/chat/chat.service.js +77 -0
- package/esm2015/lib/services/http/chat/message/message.service.js +65 -0
- package/esm2015/lib/services/http/chat/message-document/message-document.service.js +118 -0
- package/esm2015/lib/services/{depreciation/capital-project.service.js → http/depreciation/depreciation-capital-project/depreciation-capital-project.service.js} +7 -7
- package/esm2015/lib/services/http/depreciation/depreciation.service.js +146 -0
- package/esm2015/lib/services/http/document/document-folder/document-folder.service.js +84 -0
- package/esm2015/lib/services/{client → http/firm/client-invite}/client-invite.service.js +7 -7
- package/esm2015/lib/services/http/firm/client-movement/client-movement.service.js +98 -0
- package/esm2015/lib/services/http/firm/employee/employee.service.js +39 -0
- package/esm2015/lib/services/http/firm/employee-invite/employee-invite.service.js +53 -0
- package/esm2015/lib/services/http/firm/firm.service.js +79 -0
- package/esm2015/lib/services/http/firm/portfolio-report/client-portfolio-report.service.js +37 -0
- package/esm2015/lib/services/http/income-source/income-source-forecast/income-source-forecast.service.js +90 -0
- package/esm2015/lib/services/http/income-source/income-source.service.js +109 -0
- package/esm2015/lib/services/http/income-source/salary-forecast/salary-forecast.service.js +90 -0
- package/esm2015/lib/services/http/income-source/sole-forecast/sole-forecast.service.js +87 -0
- package/esm2015/lib/services/http/loan/borrowing-expense/borrowing-expense.service.js +73 -0
- package/esm2015/lib/services/http/loan/loan.service.js +145 -0
- package/esm2015/lib/services/http/property/property-category/property-category.service.js +23 -0
- package/esm2015/lib/services/http/property/property-category-movement/property-category-movement.service.js +47 -0
- package/esm2015/lib/services/http/property/property-document/property-document.service.js +70 -0
- package/esm2015/lib/services/http/property/property-sale/property-sale.service.js +20 -0
- package/esm2015/lib/services/http/property/property-sale/tax-exemption/tax-exemption.service.js +21 -0
- package/esm2015/lib/services/http/property/property-share/property-share.service.js +115 -0
- package/esm2015/lib/services/http/property/property.service.js +126 -0
- package/esm2015/lib/services/http/rest/rest.service.js +190 -0
- package/esm2015/lib/services/http/service-notification/service-notification.service.js +65 -0
- package/esm2015/lib/services/http/subscription/subscription.service.js +157 -0
- package/esm2015/lib/services/http/tax-review/tax-review-history/tax-review-history.service.js +41 -0
- package/esm2015/lib/services/http/tax-review/tax-review.service.js +103 -0
- package/esm2015/lib/services/http/tax-summary/tax-summary.service.js +71 -0
- package/esm2015/lib/services/http/transaction/transaction-allocation/transaction-allocation.service.js +85 -0
- package/esm2015/lib/services/http/transaction/transaction.service.js +319 -0
- package/esm2015/lib/services/http/user/occupation/occupation.service.js +45 -0
- package/esm2015/lib/services/http/user/user-event-setting/user-event-setting.service.js +59 -0
- package/esm2015/lib/services/http/user/user-event-type/user-event-type.service.js +29 -0
- package/esm2015/lib/services/http/user/user.service.js +124 -0
- package/esm2015/lib/services/http/vehicle/vehicle.service.js +237 -0
- package/esm2015/lib/services/property/equity-position-chart/equity-position-chart.service.js +45 -0
- package/esm2015/public-api.js +48 -48
- package/fesm2015/taxtank-core.js +51 -49
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/services/{address → http/address}/address.service.d.ts +1 -1
- package/lib/services/{bank → http/bank/bank-account}/bank-account.service.d.ts +5 -5
- package/lib/services/{bank → http/bank/bank-connection}/bank-connection.service.d.ts +5 -5
- package/lib/services/{bank → http/bank/bank-transaction}/bank-transaction.service.d.ts +5 -5
- package/lib/services/{bank → http/bank}/bank.service.d.ts +4 -4
- package/lib/services/{bank → http/bank/basiq}/basiq.service.d.ts +7 -7
- package/lib/services/{chart-accounts → http/chart-accounts/chart-accounts-depreciations}/chart-accounts-depreciations.service.d.ts +4 -4
- package/lib/services/{chart-accounts → http/chart-accounts}/chart-accounts.service.d.ts +3 -3
- package/lib/services/{chat → http/chat}/chat.service.d.ts +7 -7
- package/lib/services/{chat → http/chat/message}/message.service.d.ts +7 -7
- package/lib/services/{chat → http/chat/message-document}/message-document.service.d.ts +3 -3
- package/lib/services/{depreciation/capital-project.service.d.ts → http/depreciation/depreciation-capital-project/depreciation-capital-project.service.d.ts} +4 -4
- package/lib/services/{depreciation → http/depreciation}/depreciation.service.d.ts +5 -5
- package/lib/services/{document → http/document/document-folder}/document-folder.service.d.ts +6 -6
- package/lib/services/{client → http/firm/client-invite}/client-invite.service.d.ts +4 -4
- package/lib/services/{client → http/firm/client-movement}/client-movement.service.d.ts +7 -7
- package/lib/services/{employee → http/firm/employee}/employee.service.d.ts +4 -4
- package/lib/services/{employee → http/firm/employee-invite}/employee-invite.service.d.ts +4 -4
- package/lib/services/{firm → http/firm}/firm.service.d.ts +2 -2
- package/lib/services/{client → http/firm/portfolio-report}/client-portfolio-report.service.d.ts +1 -1
- package/lib/services/{income-source → http/income-source/income-source-forecast}/income-source-forecast.service.d.ts +5 -5
- package/lib/services/{income-source → http/income-source}/income-source.service.d.ts +8 -8
- package/lib/services/{income-source → http/income-source/salary-forecast}/salary-forecast.service.d.ts +6 -6
- package/lib/services/{income-source → http/income-source/sole-forecast}/sole-forecast.service.d.ts +5 -5
- package/lib/services/{borrowing-expense → http/loan/borrowing-expense}/borrowing-expense.service.d.ts +2 -2
- package/lib/services/{loan → http/loan}/loan.service.d.ts +6 -6
- package/lib/services/{property → http/property}/property-category/property-category.service.d.ts +4 -4
- package/lib/services/{property → http/property/property-category-movement}/property-category-movement.service.d.ts +4 -4
- package/lib/services/{property → http/property}/property-document/property-document.service.d.ts +5 -5
- package/lib/services/http/property/property-sale/property-sale.service.d.ts +10 -0
- package/lib/services/http/property/property-sale/tax-exemption/tax-exemption.service.d.ts +11 -0
- package/lib/services/{property → http/property}/property-share/property-share.service.d.ts +5 -5
- package/lib/services/{property → http/property}/property.service.d.ts +5 -5
- package/lib/services/{base-rest.service.d.ts → http/rest/rest.service.d.ts} +4 -4
- package/lib/services/http/service-notification/service-notification.service.d.ts +31 -0
- package/lib/services/{subscription → http/subscription}/subscription.service.d.ts +6 -6
- package/lib/services/{tax-review → http/tax-review/tax-review-history}/tax-review-history.service.d.ts +5 -5
- package/lib/services/{tax-review → http/tax-review}/tax-review.service.d.ts +6 -6
- package/lib/services/{tax-summary → http/tax-summary}/tax-summary.service.d.ts +2 -2
- package/lib/services/{transaction → http/transaction/transaction-allocation}/transaction-allocation.service.d.ts +6 -6
- package/lib/services/{transaction → http/transaction}/transaction.service.d.ts +7 -7
- package/lib/services/{user → http/user/occupation}/occupation.service.d.ts +1 -1
- package/lib/services/{user-event → http/user/user-event-setting}/user-event-setting.service.d.ts +5 -5
- package/lib/services/{user-event → http/user/user-event-type}/user-event-type.service.d.ts +5 -5
- package/lib/services/{user → http/user}/user.service.d.ts +3 -3
- package/lib/services/{work/work-tank.service.d.ts → http/vehicle/vehicle.service.d.ts} +9 -8
- package/lib/services/property/{equity-position-chart.service.d.ts → equity-position-chart/equity-position-chart.service.d.ts} +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +47 -47
- package/esm2015/lib/services/address/address.service.js +0 -39
- package/esm2015/lib/services/bank/bank-account.service.js +0 -118
- package/esm2015/lib/services/bank/bank-connection.service.js +0 -52
- package/esm2015/lib/services/bank/bank-transaction.service.js +0 -89
- package/esm2015/lib/services/bank/bank.service.js +0 -24
- package/esm2015/lib/services/bank/basiq.service.js +0 -94
- package/esm2015/lib/services/base-rest.service.js +0 -190
- package/esm2015/lib/services/borrowing-expense/borrowing-expense.service.js +0 -73
- package/esm2015/lib/services/chart-accounts/chart-accounts-depreciations.service.js +0 -38
- package/esm2015/lib/services/chart-accounts/chart-accounts.service.js +0 -89
- package/esm2015/lib/services/chat/chat.service.js +0 -77
- package/esm2015/lib/services/chat/message-document.service.js +0 -118
- package/esm2015/lib/services/chat/message.service.js +0 -65
- package/esm2015/lib/services/client/client-movement.service.js +0 -98
- package/esm2015/lib/services/client/client-portfolio-report.service.js +0 -37
- package/esm2015/lib/services/depreciation/depreciation.service.js +0 -146
- package/esm2015/lib/services/document/document-folder.service.js +0 -84
- package/esm2015/lib/services/employee/employee-invite.service.js +0 -53
- package/esm2015/lib/services/employee/employee.service.js +0 -39
- package/esm2015/lib/services/firm/firm.service.js +0 -79
- package/esm2015/lib/services/income-source/income-source-forecast.service.js +0 -90
- package/esm2015/lib/services/income-source/income-source.service.js +0 -109
- package/esm2015/lib/services/income-source/salary-forecast.service.js +0 -90
- package/esm2015/lib/services/income-source/sole-forecast.service.js +0 -87
- package/esm2015/lib/services/loan/loan.service.js +0 -145
- package/esm2015/lib/services/notification/notification.service.js +0 -65
- package/esm2015/lib/services/property/equity-position-chart.service.js +0 -45
- package/esm2015/lib/services/property/property-category/property-category.service.js +0 -23
- package/esm2015/lib/services/property/property-category-movement.service.js +0 -47
- package/esm2015/lib/services/property/property-document/property-document.service.js +0 -70
- package/esm2015/lib/services/property/property-sale/property-sale.service.js +0 -20
- package/esm2015/lib/services/property/property-sale/tax-exemption/tax-exemption.service.js +0 -21
- package/esm2015/lib/services/property/property-share/property-share.service.js +0 -115
- package/esm2015/lib/services/property/property.service.js +0 -126
- package/esm2015/lib/services/subscription/subscription.service.js +0 -157
- package/esm2015/lib/services/tax-review/tax-review-history.service.js +0 -41
- package/esm2015/lib/services/tax-review/tax-review.service.js +0 -103
- package/esm2015/lib/services/tax-summary/tax-summary.service.js +0 -71
- package/esm2015/lib/services/transaction/transaction-allocation.service.js +0 -85
- package/esm2015/lib/services/transaction/transaction.service.js +0 -319
- package/esm2015/lib/services/user/occupation.service.js +0 -45
- package/esm2015/lib/services/user/user.service.js +0 -124
- package/esm2015/lib/services/user-event/user-event-setting.service.js +0 -59
- package/esm2015/lib/services/user-event/user-event-type.service.js +0 -29
- package/esm2015/lib/services/work/work-tank.service.js +0 -236
- package/lib/services/notification/notification.service.d.ts +0 -31
- package/lib/services/property/property-sale/property-sale.service.d.ts +0 -10
- package/lib/services/property/property-sale/tax-exemption/tax-exemption.service.d.ts +0 -11
package/fesm2015/taxtank-core.js
CHANGED
|
@@ -2201,6 +2201,7 @@ class TransactionBase {
|
|
|
2201
2201
|
* Check if current tank is Work
|
|
2202
2202
|
*/
|
|
2203
2203
|
isWorkTank() {
|
|
2204
|
+
// @TODO remove this hack
|
|
2204
2205
|
if (this.tankType) {
|
|
2205
2206
|
return this.tankType === TankTypeEnum.WORK;
|
|
2206
2207
|
}
|
|
@@ -6483,7 +6484,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
6483
6484
|
* Model - entity service is working with
|
|
6484
6485
|
* BaseModel - base entity model that extends by Model
|
|
6485
6486
|
*/
|
|
6486
|
-
class
|
|
6487
|
+
class RestService {
|
|
6487
6488
|
constructor(http, eventDispatcherService, environment) {
|
|
6488
6489
|
this.http = http;
|
|
6489
6490
|
this.eventDispatcherService = eventDispatcherService;
|
|
@@ -6647,9 +6648,9 @@ class BaseRestService {
|
|
|
6647
6648
|
return plainToClass(model, baseModel, { excludePrefixes: ['@'] });
|
|
6648
6649
|
}
|
|
6649
6650
|
}
|
|
6650
|
-
|
|
6651
|
-
|
|
6652
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type:
|
|
6651
|
+
RestService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: RestService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6652
|
+
RestService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: RestService, providedIn: 'root' });
|
|
6653
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: RestService, decorators: [{
|
|
6653
6654
|
type: Injectable,
|
|
6654
6655
|
args: [{
|
|
6655
6656
|
providedIn: 'root'
|
|
@@ -6662,7 +6663,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
6662
6663
|
/**
|
|
6663
6664
|
* Service that handling banks logic
|
|
6664
6665
|
*/
|
|
6665
|
-
class BankService extends
|
|
6666
|
+
class BankService extends RestService {
|
|
6666
6667
|
constructor() {
|
|
6667
6668
|
super(...arguments);
|
|
6668
6669
|
this.modelClass = Bank;
|
|
@@ -6682,7 +6683,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
6682
6683
|
/**
|
|
6683
6684
|
* Service that handling user's bank accounts logic
|
|
6684
6685
|
*/
|
|
6685
|
-
class BankAccountService extends
|
|
6686
|
+
class BankAccountService extends RestService {
|
|
6686
6687
|
constructor(http, eventDispatcherService, environment) {
|
|
6687
6688
|
super(http, eventDispatcherService, environment);
|
|
6688
6689
|
this.http = http;
|
|
@@ -6878,7 +6879,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
6878
6879
|
* BankConnection means user account at specific bank (usually each user has only one at the same bank)
|
|
6879
6880
|
* service handles BankConnection management
|
|
6880
6881
|
*/
|
|
6881
|
-
class BankConnectionService extends
|
|
6882
|
+
class BankConnectionService extends RestService {
|
|
6882
6883
|
constructor(http, eventDispatcherService, environment) {
|
|
6883
6884
|
super(http, eventDispatcherService, environment);
|
|
6884
6885
|
this.http = http;
|
|
@@ -6919,7 +6920,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
6919
6920
|
/**
|
|
6920
6921
|
* Service for bank transactions business logic
|
|
6921
6922
|
*/
|
|
6922
|
-
class BankTransactionService extends
|
|
6923
|
+
class BankTransactionService extends RestService {
|
|
6923
6924
|
constructor(http, eventDispatcherService, environment) {
|
|
6924
6925
|
super(http, eventDispatcherService, environment);
|
|
6925
6926
|
this.http = http;
|
|
@@ -6998,7 +6999,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
6998
6999
|
* basiq is a middleman between bank and user
|
|
6999
7000
|
* service is responsible for fetching bank related information
|
|
7000
7001
|
*/
|
|
7001
|
-
class BasiqService extends
|
|
7002
|
+
class BasiqService extends RestService {
|
|
7002
7003
|
constructor(http, eventDispatcherService, environment) {
|
|
7003
7004
|
super(http, eventDispatcherService, environment);
|
|
7004
7005
|
this.http = http;
|
|
@@ -7225,7 +7226,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
7225
7226
|
/**
|
|
7226
7227
|
* Service to work with depreciation chart accounts
|
|
7227
7228
|
*/
|
|
7228
|
-
class ChartAccountsDepreciationService extends
|
|
7229
|
+
class ChartAccountsDepreciationService extends RestService {
|
|
7229
7230
|
constructor() {
|
|
7230
7231
|
super(...arguments);
|
|
7231
7232
|
this.url = 'chart-accounts-depreciations';
|
|
@@ -7297,7 +7298,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
7297
7298
|
/**
|
|
7298
7299
|
* Service for work with chats
|
|
7299
7300
|
*/
|
|
7300
|
-
class ChatService extends
|
|
7301
|
+
class ChatService extends RestService {
|
|
7301
7302
|
constructor(http, eventDispatcherService, environment, sseService) {
|
|
7302
7303
|
super(http, eventDispatcherService, environment);
|
|
7303
7304
|
this.http = http;
|
|
@@ -7364,7 +7365,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
7364
7365
|
/**
|
|
7365
7366
|
* Service for work with messages
|
|
7366
7367
|
*/
|
|
7367
|
-
class MessageService extends
|
|
7368
|
+
class MessageService extends RestService {
|
|
7368
7369
|
constructor(http, eventDispatcherService, environment, sseService) {
|
|
7369
7370
|
super(http, eventDispatcherService, environment);
|
|
7370
7371
|
this.http = http;
|
|
@@ -7522,7 +7523,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
7522
7523
|
args: ['environment']
|
|
7523
7524
|
}] }]; } });
|
|
7524
7525
|
|
|
7525
|
-
class ClientInviteService extends
|
|
7526
|
+
class ClientInviteService extends RestService {
|
|
7526
7527
|
constructor() {
|
|
7527
7528
|
super(...arguments);
|
|
7528
7529
|
this.url = 'clients/invites';
|
|
@@ -7614,7 +7615,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
7614
7615
|
}]
|
|
7615
7616
|
}] });
|
|
7616
7617
|
|
|
7617
|
-
class ClientMovementService extends
|
|
7618
|
+
class ClientMovementService extends RestService {
|
|
7618
7619
|
constructor(http, eventDispatcherService, environment) {
|
|
7619
7620
|
super(http, eventDispatcherService, environment);
|
|
7620
7621
|
this.http = http;
|
|
@@ -7733,7 +7734,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
7733
7734
|
/**
|
|
7734
7735
|
* Service for work with DepreciationCapitalProjects
|
|
7735
7736
|
*/
|
|
7736
|
-
class
|
|
7737
|
+
class DepreciationCapitalProjectService {
|
|
7737
7738
|
constructor(http, environment) {
|
|
7738
7739
|
this.http = http;
|
|
7739
7740
|
this.environment = environment;
|
|
@@ -7772,9 +7773,9 @@ class CapitalProjectService {
|
|
|
7772
7773
|
}));
|
|
7773
7774
|
}
|
|
7774
7775
|
}
|
|
7775
|
-
|
|
7776
|
-
|
|
7777
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type:
|
|
7776
|
+
DepreciationCapitalProjectService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: DepreciationCapitalProjectService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7777
|
+
DepreciationCapitalProjectService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' });
|
|
7778
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
|
|
7778
7779
|
type: Injectable,
|
|
7779
7780
|
args: [{
|
|
7780
7781
|
providedIn: 'root'
|
|
@@ -7784,7 +7785,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
7784
7785
|
args: ['environment']
|
|
7785
7786
|
}] }]; } });
|
|
7786
7787
|
|
|
7787
|
-
class DepreciationService extends
|
|
7788
|
+
class DepreciationService extends RestService {
|
|
7788
7789
|
constructor(http, eventDispatcherService, environment) {
|
|
7789
7790
|
super(http, eventDispatcherService, environment);
|
|
7790
7791
|
this.http = http;
|
|
@@ -7920,7 +7921,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
7920
7921
|
/**
|
|
7921
7922
|
* Service to handle document-folders and depending documents logic
|
|
7922
7923
|
*/
|
|
7923
|
-
class DocumentFolderService extends
|
|
7924
|
+
class DocumentFolderService extends RestService {
|
|
7924
7925
|
constructor(http, eventDispatcherService, environment) {
|
|
7925
7926
|
super(http, eventDispatcherService, environment);
|
|
7926
7927
|
this.http = http;
|
|
@@ -7991,7 +7992,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
7991
7992
|
args: ['environment']
|
|
7992
7993
|
}] }]; } });
|
|
7993
7994
|
|
|
7994
|
-
class EmployeeService extends
|
|
7995
|
+
class EmployeeService extends RestService {
|
|
7995
7996
|
constructor() {
|
|
7996
7997
|
super(...arguments);
|
|
7997
7998
|
this.url = 'employees';
|
|
@@ -8022,7 +8023,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
8022
8023
|
}]
|
|
8023
8024
|
}] });
|
|
8024
8025
|
|
|
8025
|
-
class EmployeeInviteService extends
|
|
8026
|
+
class EmployeeInviteService extends RestService {
|
|
8026
8027
|
constructor() {
|
|
8027
8028
|
super(...arguments);
|
|
8028
8029
|
this.url = 'employees/invites';
|
|
@@ -8165,7 +8166,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
8165
8166
|
/**
|
|
8166
8167
|
* Service to work with income sources
|
|
8167
8168
|
*/
|
|
8168
|
-
class IncomeSourceService extends
|
|
8169
|
+
class IncomeSourceService extends RestService {
|
|
8169
8170
|
constructor(http, eventDispatcherService, environment) {
|
|
8170
8171
|
super(http, eventDispatcherService, environment);
|
|
8171
8172
|
this.http = http;
|
|
@@ -8260,7 +8261,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
8260
8261
|
/**
|
|
8261
8262
|
* Service to work with Other Income Forecasts
|
|
8262
8263
|
*/
|
|
8263
|
-
class IncomeSourceForecastService extends
|
|
8264
|
+
class IncomeSourceForecastService extends RestService {
|
|
8264
8265
|
constructor(http, eventDispatcherService, environment) {
|
|
8265
8266
|
super(http, eventDispatcherService, environment);
|
|
8266
8267
|
this.http = http;
|
|
@@ -8339,7 +8340,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
8339
8340
|
/**
|
|
8340
8341
|
* Service to work with Salary Forecasts
|
|
8341
8342
|
*/
|
|
8342
|
-
class SalaryForecastService extends
|
|
8343
|
+
class SalaryForecastService extends RestService {
|
|
8343
8344
|
constructor(http, eventDispatcherService, environment) {
|
|
8344
8345
|
super(http, eventDispatcherService, environment);
|
|
8345
8346
|
this.http = http;
|
|
@@ -8415,7 +8416,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
8415
8416
|
args: ['environment']
|
|
8416
8417
|
}] }]; } });
|
|
8417
8418
|
|
|
8418
|
-
class SoleForecastService extends
|
|
8419
|
+
class SoleForecastService extends RestService {
|
|
8419
8420
|
constructor(http, eventDispatcherService, environment) {
|
|
8420
8421
|
super(http, eventDispatcherService, environment);
|
|
8421
8422
|
this.http = http;
|
|
@@ -8533,7 +8534,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
8533
8534
|
/**
|
|
8534
8535
|
* Service that handling loans logic
|
|
8535
8536
|
*/
|
|
8536
|
-
class LoanService extends
|
|
8537
|
+
class LoanService extends RestService {
|
|
8537
8538
|
constructor(http, eventDispatcherService, environment) {
|
|
8538
8539
|
super(http, eventDispatcherService, environment);
|
|
8539
8540
|
this.http = http;
|
|
@@ -8666,7 +8667,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
8666
8667
|
/**
|
|
8667
8668
|
* Service to handle service notifications logic
|
|
8668
8669
|
*/
|
|
8669
|
-
class
|
|
8670
|
+
class ServiceNotificationService extends RestService {
|
|
8670
8671
|
constructor(http, eventDispatcherService, environment, sseService) {
|
|
8671
8672
|
super(http, eventDispatcherService, environment);
|
|
8672
8673
|
this.http = http;
|
|
@@ -8704,9 +8705,9 @@ class NotificationService extends BaseRestService {
|
|
|
8704
8705
|
});
|
|
8705
8706
|
}
|
|
8706
8707
|
}
|
|
8707
|
-
|
|
8708
|
-
|
|
8709
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type:
|
|
8708
|
+
ServiceNotificationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: ServiceNotificationService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8709
|
+
ServiceNotificationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' });
|
|
8710
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: ServiceNotificationService, decorators: [{
|
|
8710
8711
|
type: Injectable,
|
|
8711
8712
|
args: [{
|
|
8712
8713
|
providedIn: 'root'
|
|
@@ -8860,7 +8861,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
8860
8861
|
/**
|
|
8861
8862
|
* Service for work with Property
|
|
8862
8863
|
*/
|
|
8863
|
-
class PropertyService extends
|
|
8864
|
+
class PropertyService extends RestService {
|
|
8864
8865
|
constructor(http, eventDispatcherService, environment) {
|
|
8865
8866
|
super(http, eventDispatcherService, environment);
|
|
8866
8867
|
this.http = http;
|
|
@@ -9091,7 +9092,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
9091
9092
|
/**
|
|
9092
9093
|
* Service for work with Property Categories
|
|
9093
9094
|
*/
|
|
9094
|
-
class PropertyCategoryService extends
|
|
9095
|
+
class PropertyCategoryService extends RestService {
|
|
9095
9096
|
constructor() {
|
|
9096
9097
|
super(...arguments);
|
|
9097
9098
|
this.modelClass = PropertyCategory;
|
|
@@ -9110,7 +9111,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
9110
9111
|
/**
|
|
9111
9112
|
* Class for work with Property Documents
|
|
9112
9113
|
*/
|
|
9113
|
-
class PropertyDocumentService extends
|
|
9114
|
+
class PropertyDocumentService extends RestService {
|
|
9114
9115
|
constructor(http, eventDispatcherService, environment) {
|
|
9115
9116
|
super(http, eventDispatcherService, environment);
|
|
9116
9117
|
this.http = http;
|
|
@@ -9169,7 +9170,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
9169
9170
|
}] }]; } });
|
|
9170
9171
|
|
|
9171
9172
|
// @TODO check and improve logic during refactoring
|
|
9172
|
-
class PropertyShareService extends
|
|
9173
|
+
class PropertyShareService extends RestService {
|
|
9173
9174
|
constructor(http, eventDispatcherService, environment) {
|
|
9174
9175
|
super(http, eventDispatcherService, environment);
|
|
9175
9176
|
this.http = http;
|
|
@@ -9272,7 +9273,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
9272
9273
|
args: ['environment']
|
|
9273
9274
|
}] }]; } });
|
|
9274
9275
|
|
|
9275
|
-
class PropertySaleService extends
|
|
9276
|
+
class PropertySaleService extends RestService {
|
|
9276
9277
|
constructor() {
|
|
9277
9278
|
super(...arguments);
|
|
9278
9279
|
this.modelClass = PropertySale;
|
|
@@ -9326,7 +9327,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
9326
9327
|
args: ['environment']
|
|
9327
9328
|
}] }]; } });
|
|
9328
9329
|
|
|
9329
|
-
class PropertyCategoryMovementService extends
|
|
9330
|
+
class PropertyCategoryMovementService extends RestService {
|
|
9330
9331
|
constructor() {
|
|
9331
9332
|
super(...arguments);
|
|
9332
9333
|
this.modelClass = PropertyCategoryMovement;
|
|
@@ -9508,7 +9509,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
9508
9509
|
/**
|
|
9509
9510
|
* Service to work with tax review
|
|
9510
9511
|
*/
|
|
9511
|
-
class TaxReviewService extends
|
|
9512
|
+
class TaxReviewService extends RestService {
|
|
9512
9513
|
constructor(http, eventDispatcherService, environment) {
|
|
9513
9514
|
super(http, eventDispatcherService, environment);
|
|
9514
9515
|
this.http = http;
|
|
@@ -9599,7 +9600,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
9599
9600
|
/**
|
|
9600
9601
|
* Service to work with tax review history
|
|
9601
9602
|
*/
|
|
9602
|
-
class TaxReviewHistoryService extends
|
|
9603
|
+
class TaxReviewHistoryService extends RestService {
|
|
9603
9604
|
constructor(http, eventDispatcherService, environment) {
|
|
9604
9605
|
super(http, eventDispatcherService, environment);
|
|
9605
9606
|
this.http = http;
|
|
@@ -9707,7 +9708,7 @@ function enumToList(data) {
|
|
|
9707
9708
|
/**
|
|
9708
9709
|
* Service for transactions business logic
|
|
9709
9710
|
*/
|
|
9710
|
-
class TransactionService extends
|
|
9711
|
+
class TransactionService extends RestService {
|
|
9711
9712
|
constructor(http, eventDispatcherService, environment) {
|
|
9712
9713
|
super(http, eventDispatcherService, environment);
|
|
9713
9714
|
this.http = http;
|
|
@@ -10009,7 +10010,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
10009
10010
|
* Service for transaction allocations business logic
|
|
10010
10011
|
* @TODO alex refactor
|
|
10011
10012
|
*/
|
|
10012
|
-
class TransactionAllocationService extends
|
|
10013
|
+
class TransactionAllocationService extends RestService {
|
|
10013
10014
|
constructor(http, eventDispatcherService, environment) {
|
|
10014
10015
|
super(http, eventDispatcherService, environment);
|
|
10015
10016
|
this.http = http;
|
|
@@ -10276,7 +10277,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
10276
10277
|
args: ['environment']
|
|
10277
10278
|
}] }]; } });
|
|
10278
10279
|
|
|
10279
|
-
class UserEventSettingService extends
|
|
10280
|
+
class UserEventSettingService extends RestService {
|
|
10280
10281
|
constructor(http, eventDispatcherService, environment) {
|
|
10281
10282
|
super(http, eventDispatcherService, environment);
|
|
10282
10283
|
this.http = http;
|
|
@@ -10325,7 +10326,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
10325
10326
|
args: ['environment']
|
|
10326
10327
|
}] }]; } });
|
|
10327
10328
|
|
|
10328
|
-
class UserEventTypeService extends
|
|
10329
|
+
class UserEventTypeService extends RestService {
|
|
10329
10330
|
constructor(http, eventDispatcherService, environment) {
|
|
10330
10331
|
super(http, eventDispatcherService, environment);
|
|
10331
10332
|
this.http = http;
|
|
@@ -10350,8 +10351,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
10350
10351
|
|
|
10351
10352
|
/**
|
|
10352
10353
|
* Service that allows to work with WorkTank operations
|
|
10354
|
+
* @TODO separate into multiple services, extend restService
|
|
10353
10355
|
*/
|
|
10354
|
-
class
|
|
10356
|
+
class VehicleService {
|
|
10355
10357
|
constructor(http, transactionService, depreciationService, chartAccountsService, eventDispatcherService, environment) {
|
|
10356
10358
|
this.http = http;
|
|
10357
10359
|
this.transactionService = transactionService;
|
|
@@ -10552,9 +10554,9 @@ class WorkTankService {
|
|
|
10552
10554
|
}));
|
|
10553
10555
|
}
|
|
10554
10556
|
}
|
|
10555
|
-
|
|
10556
|
-
|
|
10557
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type:
|
|
10557
|
+
VehicleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: VehicleService, deps: [{ token: i1.HttpClient }, { token: TransactionService }, { token: DepreciationService }, { token: ChartAccountsService }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10558
|
+
VehicleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: VehicleService, providedIn: 'root' });
|
|
10559
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: VehicleService, decorators: [{
|
|
10558
10560
|
type: Injectable,
|
|
10559
10561
|
args: [{
|
|
10560
10562
|
providedIn: 'root'
|
|
@@ -10614,7 +10616,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
10614
10616
|
}]
|
|
10615
10617
|
}] });
|
|
10616
10618
|
|
|
10617
|
-
class TaxExemptionService extends
|
|
10619
|
+
class TaxExemptionService extends RestService {
|
|
10618
10620
|
constructor() {
|
|
10619
10621
|
super(...arguments);
|
|
10620
10622
|
this.modelClass = TaxExemption;
|
|
@@ -10791,5 +10793,5 @@ class ResetPasswordForm extends AbstractForm {
|
|
|
10791
10793
|
* Generated bundle index. Do not edit.
|
|
10792
10794
|
*/
|
|
10793
10795
|
|
|
10794
|
-
export { AbstractForm, Address, AddressService, AddressTypeEnum, AlphabetColorsEnum, AppEvent, AppEventTypeEnum, AssetEntityTypeEnum, AssetTypeEnum, AssetsService, AuthService, BANK_ACCOUNT_TYPES, Bank, BankAccount, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankConnection, BankConnectionService, BankConnectionStatusEnum, BankService, BankTransaction, BankTransactionCalculationService, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasiqConfig, BasiqJob, BasiqService, BasiqToken, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum,
|
|
10796
|
+
export { AbstractForm, Address, AddressService, AddressTypeEnum, AlphabetColorsEnum, AppEvent, AppEventTypeEnum, AssetEntityTypeEnum, AssetTypeEnum, AssetsService, AuthService, BANK_ACCOUNT_TYPES, Bank, BankAccount, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankConnection, BankConnectionService, BankConnectionStatusEnum, BankService, BankTransaction, BankTransactionCalculationService, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasiqConfig, BasiqJob, BasiqService, BasiqToken, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, ChartAccounts, ChartAccountsCategoryEnum, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsHeading, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsListEnum, ChartAccountsMetadata, ChartAccountsMetadataListEnum, ChartAccountsMetadataTypeEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartData, ChartSerie, Chat, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientDetails, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CorelogicService, CorelogicSuggestion, Country, DEFAULT_VEHICLE_EXPENSE, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DataTable, DataTableColumn, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpRateEnum, DepreciationReceipt, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderService, ENDPOINTS, EmployeeCollection, EmployeeDetails, EmployeeInvite, EmployeeInviteService, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, FinancialYear, Firm, FirmService, FirmTypeEnum, HeaderTitleService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastService, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSalaryEnum, IncomeSourceTypeListWorkEnum, InterceptorsModule, IntercomService, InviteStatusEnum, JwtService, Loan, LoanBankTypeEnum, LoanCollection, LoanFrequencyEnum, LoanInterestTypeEnum, LoanMaxNumberOfPaymentsEnum, LoanPayment, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LogbookCollection, LogbookPeriod, LoginForm, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, Notification, Occupation, OccupationService, PasswordForm, PdfService, Phone, PhoneTypeEnum, PreloaderService, Property, PropertyCalculationService, PropertyCategory, PropertyCategoryMovement, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyDocument, PropertyDocumentService, PropertyEquityChartData, PropertyEquityChartItem, PropertyForecast, PropertySale, PropertySaleService, PropertySaleTaxExemptionMetadata, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyValuation, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, SUBSCRIPTION_DESCRIPTION, SUBSCRIPTION_TITLE, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceRecurringIntervalEnum, ServicePriceTypeEnum, ServiceProduct, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, ShareFilterOptionsEnum, SoleForecast, SoleForecastService, SpareDocumentSpareTypeEnum, SseService, SubscriptionService, SubscriptionTypeEnum, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionEnum, TaxExemptionMetadata, TaxExemptionMetadataEnum, TaxExemptionService, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReview, TaxReviewCollection, TaxReviewHistoryService, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionCalculationService, TransactionCollection, TransactionMetadata, TransactionOperationEnum, TransactionReceipt, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TtCoreModule, USER_ROLES, USER_WORK_POSITION, User, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserMedicareExemptionEnum, UserRolesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, Vehicle, VehicleClaim, VehicleClaimMethodEnum, VehicleLogbook, VehicleLogbookPurposeEnum, VehicleService, WORK_TANK_LOGBOOK_PURPOSE_OPTIONS, XlsxService, cloneDeep, compare, compareMatOptions, createDate, displayMatOptions, enumToList, getDocIcon, replace, roundTo, sort, sortDeep, taxReviewFilterPredicate };
|
|
10795
10797
|
//# sourceMappingURL=taxtank-core.js.map
|