taxtank-core 2.0.66 → 2.0.67
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/fesm2022/taxtank-core.mjs +34 -21
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5501,12 +5501,13 @@ declare class FinancialGoal extends AbstractModel implements FinancialGoalInterf
|
|
|
5501
5501
|
startDate: Date;
|
|
5502
5502
|
endDate: Date;
|
|
5503
5503
|
bankAccount: BankAccount$1;
|
|
5504
|
-
paymentFrequency:
|
|
5504
|
+
paymentFrequency: any;
|
|
5505
5505
|
paymentAmount: number;
|
|
5506
5506
|
inCalendar: boolean;
|
|
5507
5507
|
properties: Property$1[];
|
|
5508
5508
|
file: AppFile;
|
|
5509
5509
|
isCompleted(): boolean;
|
|
5510
|
+
isPropertyType(): boolean;
|
|
5510
5511
|
/**
|
|
5511
5512
|
* today's forecasted progress
|
|
5512
5513
|
*/
|
|
@@ -9018,9 +9019,9 @@ declare class LoanForm extends AbstractForm<Loan> {
|
|
|
9018
9019
|
declare class FinancialGoalForm extends AbstractForm<FinancialGoal> implements IEventListener {
|
|
9019
9020
|
includeDisabledFields: boolean;
|
|
9020
9021
|
bankAccountTypes: BankAccountTypeEnum[];
|
|
9021
|
-
isDebit: boolean;
|
|
9022
9022
|
constructor(goal?: FinancialGoal);
|
|
9023
9023
|
listenEvents(): void;
|
|
9024
|
+
isPropertyType(): boolean;
|
|
9024
9025
|
listenTypeChanges(): void;
|
|
9025
9026
|
/**
|
|
9026
9027
|
* Watch payment fields and auto-recalculate endDate when form is valid
|
|
@@ -9044,7 +9045,6 @@ declare class FinancialGoalForm extends AbstractForm<FinancialGoal> implements I
|
|
|
9044
9045
|
*/
|
|
9045
9046
|
calculatePaymentsByAmount(): number;
|
|
9046
9047
|
getBankAccountTypes(type: FinancialGoalTypeEnum): BankAccountTypeEnum[];
|
|
9047
|
-
getIsDebit(type: FinancialGoalTypeEnum): boolean;
|
|
9048
9048
|
}
|
|
9049
9049
|
|
|
9050
9050
|
declare class FirmForm extends AbstractForm<Firm> {
|