taxtank-core 2.0.97 → 2.0.98
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 +12 -12
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +6 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3078,7 +3078,7 @@ interface IAsset {
|
|
|
3078
3078
|
}
|
|
3079
3079
|
|
|
3080
3080
|
interface CalendarEventProvider {
|
|
3081
|
-
|
|
3081
|
+
getCalendarEvents(inCalendar: boolean): CalendarEventCollection;
|
|
3082
3082
|
}
|
|
3083
3083
|
|
|
3084
3084
|
/**
|
|
@@ -3659,7 +3659,7 @@ declare class BudgetRuleCollection extends Collection<BudgetRule> implements Cal
|
|
|
3659
3659
|
get expenses(): BudgetRuleCollection;
|
|
3660
3660
|
get incomes(): BudgetRuleCollection;
|
|
3661
3661
|
filterByProperties(properties: Property$1[]): BudgetRuleCollection;
|
|
3662
|
-
|
|
3662
|
+
getCalendarEvents(inCalendar?: boolean): MoneyCalendarEventCollection;
|
|
3663
3663
|
getByMonth(index: number): BudgetRuleCollection;
|
|
3664
3664
|
getByChartAccountsName(name: string): BudgetRuleCollection;
|
|
3665
3665
|
}
|
|
@@ -4304,7 +4304,7 @@ declare class BudgetRule extends BudgetRule$1 implements CalendarEventProvider {
|
|
|
4304
4304
|
/**
|
|
4305
4305
|
* creates recurring calendar events based on frequency
|
|
4306
4306
|
*/
|
|
4307
|
-
|
|
4307
|
+
getCalendarEvents(inCalendar?: boolean): MoneyCalendarEventCollection;
|
|
4308
4308
|
inMonth(month: number): boolean;
|
|
4309
4309
|
}
|
|
4310
4310
|
|
|
@@ -5652,7 +5652,7 @@ declare class FinancialGoal extends ObservableModel implements FinancialGoalInte
|
|
|
5652
5652
|
/**
|
|
5653
5653
|
* creates recurring calendar events based on paymentFrequency
|
|
5654
5654
|
*/
|
|
5655
|
-
|
|
5655
|
+
getCalendarEvents(inCalendar?: boolean): MoneyCalendarEventCollection;
|
|
5656
5656
|
}
|
|
5657
5657
|
|
|
5658
5658
|
declare class TaxReturnCategory extends TaxReturnCategory$1 {
|
|
@@ -11415,7 +11415,7 @@ declare class BudgetRuleItemCollection extends Collection<BudgetRuleItem> {
|
|
|
11415
11415
|
isIncome(): boolean;
|
|
11416
11416
|
get transactions(): TransactionCollection;
|
|
11417
11417
|
get rules(): BudgetRuleCollection;
|
|
11418
|
-
|
|
11418
|
+
getCalendarEvents(inCalendar?: boolean): MoneyCalendarEventCollection;
|
|
11419
11419
|
onTrack(): boolean;
|
|
11420
11420
|
/**
|
|
11421
11421
|
* @TODO move to property to avoid recalculations?
|
|
@@ -11688,7 +11688,7 @@ declare class FinancialGoalCollection extends Collection<FinancialGoal> implemen
|
|
|
11688
11688
|
getActive(): this;
|
|
11689
11689
|
getPropertiesByGoal(properties: PropertyCollection): CollectionDictionary<PropertyCollection>;
|
|
11690
11690
|
getBankAccountsByGoal(bankAccounts: BankAccountCollection): CollectionDictionary<BankAccountCollection>;
|
|
11691
|
-
|
|
11691
|
+
getCalendarEvents(inCalendar?: boolean): MoneyCalendarEventCollection;
|
|
11692
11692
|
}
|
|
11693
11693
|
|
|
11694
11694
|
declare class IncomeSourceForecastCollection extends Collection<IncomeSourceForecast> {
|