chore(M001/S01): auto-commit after complete-slice

This commit is contained in:
2026-03-24 12:27:04 +01:00
parent 9f03d123d0
commit 13d4e29336
22 changed files with 970 additions and 118 deletions
+19
View File
@@ -198,6 +198,25 @@ export interface GmailImportThreadResult {
threadId?: string | null;
}
export interface GmailThreadRefreshThreadResult {
threadId: string;
imported: number;
skipped: number;
totalMessages: number;
status: string;
latestMessageDate?: string;
}
export interface GmailThreadRefreshResult {
jobApplicationId: number;
threadsChecked: number;
imported: number;
skipped: number;
hasLinkedThreads: boolean;
refreshedAt: string;
threads: GmailThreadRefreshThreadResult[];
}
export interface GmailStatus {
connected: boolean;
gmailAddress?: string;