``` TS2322: Type StandardSchemaV1<{ repeatType: RepeatType; repeatInterval: string; daysOfWeek: DayOfWeek[]; daysOfMonth: number[]; weeksOfMonth: WeekOfMonth[]; startDate: CalendarDate; assignmentType: AssignmentType; monthlyType: MonthlyType; assignees: string[]; }, { ...; }> & SchemaClass<...> is not assignable to type FormValidateOrFn<{ repeatType: RepeatType; repeatInterval: string; monthlyType: MonthlyType; daysOfWeek: Set; weeksOfMonth: Set; daysOfMonth: Set; assignees: Set<...>; assignmentType: AssignmentType; startDate: CalendarDate; }> | undefined Type StandardSchemaV1<{ repeatType: RepeatType; repeatInterval: string; daysOfWeek: DayOfWeek[]; daysOfMonth: number[]; weeksOfMonth: WeekOfMonth[]; startDate: CalendarDate; assignmentType: AssignmentType; monthlyType: MonthlyType; assignees: string[]; }, { ...; }> & SchemaClass<...> is not assignable to type StandardSchemaV1<{ repeatType: RepeatType; repeatInterval: string; monthlyType: MonthlyType; daysOfWeek: Set; weeksOfMonth: Set; daysOfMonth: Set; assignees: Set<...>; assignmentType: AssignmentType; startDate: CalendarDate; }, unknown> The types of '~standard'.types are incompatible between these types. Type Types<{ repeatType: RepeatType; repeatInterval: string; daysOfWeek: DayOfWeek[]; daysOfMonth: number[]; weeksOfMonth: WeekOfMonth[]; startDate: CalendarDate; assignmentType: AssignmentType; monthlyType: MonthlyType; assignees: string[]; }, { ...; }> | undefined is not assignable to type StandardSchemaV1Types<{ repeatType: RepeatType; repeatInterval: string; monthlyType: MonthlyType; daysOfWeek: Set; weeksOfMonth: Set; daysOfMonth: Set; assignees: Set<...>; assignmentType: AssignmentType; startDate: CalendarDate; }, unknown> | undefined Type Types<{ repeatType: RepeatType; repeatInterval: string; daysOfWeek: DayOfWeek[]; daysOfMonth: number[]; weeksOfMonth: WeekOfMonth[]; startDate: CalendarDate; assignmentType: AssignmentType; monthlyType: MonthlyType; assignees: string[]; }, { ...; }> is not assignable to type StandardSchemaV1Types<{ repeatType: RepeatType; repeatInterval: string; monthlyType: MonthlyType; daysOfWeek: Set; weeksOfMonth: Set; daysOfMonth: Set; assignees: Set<...>; assignmentType: AssignmentType; startDate: CalendarDate; }, unknown> The types of input.daysOfWeek are incompatible between these types. Type DayOfWeek[] is missing the following properties from type Set: add, clear, delete, has, and 2 more. ```