taxtank-core 0.31.35 → 0.31.37
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/esm2020/lib/db/Models/transaction/allocation-rule-transaction.mjs +1 -1
- package/esm2020/lib/forms/transaction/allocation-rule-transaction.form.mjs +4 -3
- package/esm2020/lib/forms/transaction/allocation-rule.form.mjs +4 -4
- package/esm2020/lib/models/account-setup/account-setup-item.mjs +1 -1
- package/esm2020/lib/models/income-source/salary-forecast.mjs +5 -6
- package/esm2020/lib/models/transaction/allocation-rule-transaction.mjs +3 -3
- package/fesm2015/taxtank-core.mjs +11 -11
- package/fesm2015/taxtank-core.mjs.map +1 -1
- package/fesm2020/taxtank-core.mjs +11 -11
- package/fesm2020/taxtank-core.mjs.map +1 -1
- package/lib/db/Models/transaction/allocation-rule-transaction.d.ts +1 -0
- package/lib/models/account-setup/account-setup-item.d.ts +3 -0
- package/lib/models/income-source/salary-forecast.d.ts +1 -1
- package/package.json +1 -1
|
@@ -6,6 +6,9 @@ export declare class AccountSetupItem extends AbstractModel {
|
|
|
6
6
|
title: string;
|
|
7
7
|
description: string;
|
|
8
8
|
url: string;
|
|
9
|
+
/**
|
|
10
|
+
* hashtag to start product tour (connected with intercom)
|
|
11
|
+
*/
|
|
9
12
|
urlFragment: string;
|
|
10
13
|
clientIncomeTypes: string[];
|
|
11
14
|
isCompleted: boolean;
|
|
@@ -4,7 +4,7 @@ import { IIncomeSourceForecast } from '../../interfaces';
|
|
|
4
4
|
export declare class SalaryForecast extends SalaryForecastBase implements IIncomeSourceForecast {
|
|
5
5
|
tax: number;
|
|
6
6
|
netPay: number;
|
|
7
|
-
grossAmount: number;
|
|
7
|
+
get grossAmount(): number;
|
|
8
8
|
incomeSource: IncomeSource;
|
|
9
9
|
get taxWithheld(): number;
|
|
10
10
|
get monthlyAmount(): number;
|