I created a simple recurring event with night and day format (23:00 - 01:30) and never-ending repeat schedule. which renders except on Sunday morning time (00.00 - 01:30).
events: SchedulerEvent[] = [{id: 1,
title: 'Repeat daily',
start: new Date('2022-11-03T06:00:00'),
end: new Date('2022-11-04T01:30:00'),
recurrenceRule: 'FREQ=DAILY;',
}];
Attached screenshot for reference.