taxtank-core 2.0.81 → 2.0.83
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 +16 -1
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -10129,6 +10129,8 @@ declare class BudgetRuleItem {
|
|
|
10129
10129
|
frequency: string;
|
|
10130
10130
|
actual: number;
|
|
10131
10131
|
forecast: number;
|
|
10132
|
+
startDate: Date;
|
|
10133
|
+
endDate: Date;
|
|
10132
10134
|
constructor(rule: BudgetRule, transactions: TransactionCollection);
|
|
10133
10135
|
}
|
|
10134
10136
|
|
|
@@ -11363,6 +11365,7 @@ declare class BudgetRuleCollection extends Collection<BudgetRule> implements Cal
|
|
|
11363
11365
|
filterByProperties(properties: Property$1[]): BudgetRuleCollection;
|
|
11364
11366
|
get calendarEvents(): MoneyCalendarEvent[];
|
|
11365
11367
|
getByMonth(index: number): BudgetRuleCollection;
|
|
11368
|
+
getByChartAccountsName(name: string): BudgetRuleCollection;
|
|
11366
11369
|
}
|
|
11367
11370
|
|
|
11368
11371
|
declare class BudgetReportItemCollection extends Collection<BudgetReportItem> {
|