function generateDateSequence(startDate, endDate, interval) {
const result = [];
let currentDate = new Date(startDate);
const finalDate = new Date(endDate);
function moveToMonday(date) {
const dayOfWeek = date.getDay();
const diff = (dayOfWeek === 0 ? 7 : dayOfWeek) - 1;
date.setDate(date.getDate() - diff);
}
if (interval === 'week') {
moveToMonday(currentDate);
}
while (currentDate <= finalDate) {
result.push(new Date(currentDate));
if (interval === 'day') {
currentDate.setDate(currentDate.getDate() + 1);
} else if (interval === 'week') {
currentDate.setDate(currentDate.getDate() + 7);
} else if (interval === 'month') {
currentDate.setMonth(currentDate.getMonth() + 1);
}
}
return result.map(date => ({
date: new Date(date)
}))
}