feat: add forward-geocode to scheduler pipeline

- Wire enrich-with-forward-geocode.ts as scheduler job type
- Add geocode-enrichment pipeline group (500/cycle, post-imports)
- Harden transfer script: skip churches at (0,0) coordinates
- Rewrite dedup-mass-schedules.ts with raw SQL to avoid Prisma 7 stack overflow

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Albert
2026-05-25 10:37:08 -04:00
parent 206b64b9b8
commit 6d1c7eb3c5
3 changed files with 61 additions and 38 deletions

View File

@@ -103,7 +103,8 @@ async function main() {
{ phone: { not: null } },
{ googlePlaceId: { not: null } },
{ massSchedules: { some: {} } },
]
],
NOT: { latitude: 0, longitude: 0 },
};
// Add incremental filter if applicable