fix(webhook): extract links for incremental push syncs (#2850)

* test(webhook): pin sync extraction contract (#2849)

* test(webhook): target the submitted sync payload (#2849)

* fix(webhook): run extraction in sync job (#2849)

* fix(sync): align push trigger extraction (#2849)
This commit is contained in:
Song
2026-07-23 15:38:31 -07:00
committed by Garry Tan
parent ca47c054b8
commit 0a67162d03
4 changed files with 30 additions and 2 deletions
+1
View File
@@ -100,6 +100,7 @@ describe('runSyncTrigger', () => {
const job = jobs[0];
expect(job.priority).toBe(-10);
expect((job.data as { sourceId: string }).sourceId).toBe('default');
expect((job.data as { noExtract: boolean }).noExtract).toBe(false);
expect((job.data as { auto_embed_backfill: boolean }).auto_embed_backfill).toBe(true);
});