taxtank-core 2.0.47 → 2.0.49

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.
@@ -11484,6 +11484,7 @@ class FinancialGoal extends AbstractModel {
11484
11484
  super(...arguments);
11485
11485
  this.startDate = moment().startOf('day').toDate();
11486
11486
  this.paymentFrequency = DailyFrequencyEnum.MONTHLY;
11487
+ this.inCalendar = true;
11487
11488
  }
11488
11489
  /**
11489
11490
  * How much user saved so far.
@@ -23354,6 +23355,7 @@ class FinancialGoalForm extends AbstractForm {
23354
23355
  endDate: new FormControl(goal.endDate, [Validators.required, minDateValidator(goal.startDate, END_DATE_VALIDATION_ERROR)]),
23355
23356
  paymentFrequency: new FormControl(goal.paymentFrequency, Validators.required),
23356
23357
  paymentAmount: new FormControl(goal.paymentAmount, Validators.required),
23358
+ inCalendar: new FormControl(goal.inCalendar),
23357
23359
  file: new FormControl(goal.file),
23358
23360
  description: new FormControl(goal.description),
23359
23361
  }, goal);