Fix timezone handling in completeChore and correct frequency type constants

Add Tests for scheduler
Build on PR and run tests
This commit is contained in:
Mo Tarbin 2025-01-20 21:17:36 -05:00
parent de24fd5395
commit 40f51ce783
5 changed files with 376 additions and 423 deletions

View file

@ -17,7 +17,7 @@ const (
FrequencyTypeMonthly FrequencyType = "monthly"
FrequencyTypeYearly FrequencyType = "yearly"
FrequencyTypeAdaptive FrequencyType = "adaptive"
FrequencyTypeIntervel FrequencyType = "interval"
FrequencyTypeInterval FrequencyType = "interval"
FrequencyTypeDayOfTheWeek FrequencyType = "days_of_the_week"
FrequencyTypeDayOfTheMonth FrequencyType = "day_of_the_month"
FrequencyTypeTrigger FrequencyType = "trigger"