Skip to content

Commit be5277a

Browse files
committed
fix(zoom): widen incremental sync overlap to 30 days for late transcripts
1 parent 1b72668 commit be5277a

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

apps/sim/connectors/zoom/zoom.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,13 @@ const PAGE_SIZE = 300
1212
const WINDOW_DAYS = 30
1313
const DEFAULT_LOOKBACK_DAYS = 180
1414
const MAX_LOOKBACK_DAYS = 180
15-
const INCREMENTAL_OVERLAP_DAYS = 7
15+
/**
16+
* Days of overlap added when computing the incremental sync window. Zoom transcript
17+
* generation is usually fast, but AI Companion / audio transcription can lag hours to
18+
* days for large accounts. A 30-day overlap catches late-arriving transcripts at the
19+
* cost of at most one extra 30-day window per sync.
20+
*/
21+
const INCREMENTAL_OVERLAP_DAYS = 30
1622
const MS_PER_DAY = 24 * 60 * 60 * 1000
1723

1824
interface ZoomRecordingFile {

0 commit comments

Comments
 (0)