taxtank-core 2.0.70 → 2.0.72
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/index.d.ts
CHANGED
|
@@ -5465,6 +5465,7 @@ interface FinancialGoalInterface {
|
|
|
5465
5465
|
type: FinancialGoalTypeEnum;
|
|
5466
5466
|
status: FinancialGoalStatusEnum;
|
|
5467
5467
|
initialValue: number;
|
|
5468
|
+
currentValue: number;
|
|
5468
5469
|
finalValue: number;
|
|
5469
5470
|
targetValue: number;
|
|
5470
5471
|
startDate: Date;
|
|
@@ -5501,18 +5502,20 @@ declare class FinancialGoal extends AbstractModel implements FinancialGoalInterf
|
|
|
5501
5502
|
type: FinancialGoalTypeEnum;
|
|
5502
5503
|
status: FinancialGoalStatusEnum;
|
|
5503
5504
|
initialValue: number;
|
|
5505
|
+
currentValue: number;
|
|
5504
5506
|
finalValue: number;
|
|
5505
5507
|
targetValue: number;
|
|
5506
5508
|
startDate: Date;
|
|
5507
5509
|
endDate: Date;
|
|
5508
5510
|
bankAccount: BankAccount$1;
|
|
5509
|
-
paymentFrequency:
|
|
5511
|
+
paymentFrequency: DailyFrequencyEnum;
|
|
5510
5512
|
paymentAmount: number;
|
|
5511
5513
|
inCalendar: boolean;
|
|
5512
5514
|
properties: Property$1[];
|
|
5513
5515
|
file: AppFile;
|
|
5514
5516
|
isCompleted(): boolean;
|
|
5515
5517
|
isPropertyType(): boolean;
|
|
5518
|
+
isLvr(): boolean;
|
|
5516
5519
|
/**
|
|
5517
5520
|
* today's forecasted progress
|
|
5518
5521
|
*/
|