feat: support outlook for calendar plus minor fixes

This commit is contained in:
2026-06-27 15:07:10 +09:30
parent 2163f06de9
commit d34333ca38
31 changed files with 1791 additions and 231 deletions
+1 -8
View File
@@ -4,10 +4,7 @@ import {
fetchTimetableLessons,
trailingWeekRange,
} from "@/seqta/utils/googleCalendar/fetchTimetable";
import {
getSyncWeeksAhead,
markWeeklySyncComplete,
} from "@/seqta/utils/googleCalendar/syncSettings";
import { getSyncWeeksAhead } from "@/seqta/utils/calendarSync/settings";
import { syncLessonsToGoogleCalendar } from "@/seqta/utils/googleCalendar/syncEngine";
import type {
GoogleCalendarSyncOptions,
@@ -63,10 +60,6 @@ export async function runGoogleCalendarSync(
options,
);
if (result.success && mode === "incremental") {
await markWeeklySyncComplete();
}
return result;
}