We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b72668 commit be5277aCopy full SHA for be5277a
1 file changed
apps/sim/connectors/zoom/zoom.ts
@@ -12,7 +12,13 @@ const PAGE_SIZE = 300
12
const WINDOW_DAYS = 30
13
const DEFAULT_LOOKBACK_DAYS = 180
14
const MAX_LOOKBACK_DAYS = 180
15
-const INCREMENTAL_OVERLAP_DAYS = 7
+/**
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
22
const MS_PER_DAY = 24 * 60 * 60 * 1000
23
24
interface ZoomRecordingFile {
0 commit comments