taxtank-core 2.0.104 → 2.0.106
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 +30 -12
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4333,7 +4333,7 @@ declare class BudgetRule extends BudgetRule$1 implements CalendarEventProvider {
|
|
|
4333
4333
|
property: Property$1;
|
|
4334
4334
|
business: SoleBusiness;
|
|
4335
4335
|
incomeSource?: IncomeSource;
|
|
4336
|
-
frequency?:
|
|
4336
|
+
frequency?: AnnualFrequencyEnum;
|
|
4337
4337
|
/**
|
|
4338
4338
|
* creates recurring calendar events based on frequency
|
|
4339
4339
|
*/
|
|
@@ -5625,7 +5625,7 @@ interface FinancialGoalInterface {
|
|
|
5625
5625
|
startDate: Date;
|
|
5626
5626
|
endDate: Date;
|
|
5627
5627
|
bankAccount: BankAccount$1;
|
|
5628
|
-
paymentFrequency:
|
|
5628
|
+
paymentFrequency: AnnualFrequencyEnum;
|
|
5629
5629
|
paymentAmount: number;
|
|
5630
5630
|
inCalendar: boolean;
|
|
5631
5631
|
properties?: Property$1[];
|
|
@@ -5645,7 +5645,7 @@ declare class FinancialGoal extends ObservableModel implements FinancialGoalInte
|
|
|
5645
5645
|
startDate: Date;
|
|
5646
5646
|
endDate: Date;
|
|
5647
5647
|
bankAccount: BankAccount$1;
|
|
5648
|
-
paymentFrequency:
|
|
5648
|
+
paymentFrequency: AnnualFrequencyEnum;
|
|
5649
5649
|
paymentAmount: number;
|
|
5650
5650
|
inCalendar: boolean;
|
|
5651
5651
|
properties: Property$1[];
|
|
@@ -12140,7 +12140,7 @@ declare function toArray<T>(data: T | T[]): T[];
|
|
|
12140
12140
|
* - Iteratively adds the appropriate duration (week/month) until the end date is reached.
|
|
12141
12141
|
* - Returns all occurrence dates including the start date and the last valid recurrence.
|
|
12142
12142
|
*/
|
|
12143
|
-
declare function recurringDates(frequency:
|
|
12143
|
+
declare function recurringDates(frequency: AnnualFrequencyEnum, startDate: Date, endDate?: Date): Date[];
|
|
12144
12144
|
|
|
12145
12145
|
declare const ADBLOCK_ERROR_HTML: InjectionToken<string>;
|
|
12146
12146
|
declare const ADBLOCK_ERROR_HTML_VALUE = "\n <div class=\"text-center\">\n <strong>Action needed - Your adblocker is blocking CoreLogic</strong>\n To add a property in TaxTank we need to fetch data from CoreLogic \u2014 but your ad blocker is getting in the way.\n Please disable your adblocker or whitelist TaxTank to continue.\n <a class=\"btn\" target=\"_blank\" href=\"https://support.taxtank.com.au/en/articles/10505609-how-to-ensure-seamless-functionality-while-using-ad-blockers-with-taxtank\">Learn more</a>\n </div>\n";
|