feat: add Airtable CMS sync integration#127
Merged
liamwalder merged 14 commits intodevelopfrom Apr 6, 2026
Merged
Conversation
…mproved data loading
- Add human-readable field type labels in mapping UI - Filter attachments by MIME type based on target CMS field - Extract correct property from button/collaborator fields by CMS type - Skip complex objects in lookup/rollup value transforms - Hoist compatibility Sets to module scope for O(1) lookups - Precompute mapping grid lookups with useMemo - Fix stale connections reference after sync refresh - Block collection deletion when Airtable connections exist - Clean up Airtable webhooks on app disconnect
- Add disable auto-sync option in connection dropdown - Add daily cron to refresh webhooks before expiration - Clear webhook fields and show expiration notice on refresh failure - Track webhookExpiredAt to surface expired state in UI
- Ping notification URL to detect auth/reachability issues early - Use ToastError for structured title + description error toasts
- Extract shared sync setup into prepareSyncState, classifyRecords, and executeBatchOperations so both full and incremental paths reuse the same logic - Add listRecordsByIds using filterByFormula to fetch only changed records from Airtable - Webhook handler now parses per-record changes from payloads and runs incremental sync, falling back to full sync above 100 records
Reuse the shared URL utility instead of an inline fallback chain, picking up VERCEL_PROJECT_PRODUCTION_URL for zero-config Vercel deploys. Made-with: Cursor
liamwalder
approved these changes
Apr 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add one-way Airtable-to-CMS sync integration, allowing users to connect Airtable bases/tables to CMS collections with manual field mapping, full and incremental sync via webhooks, and automatic webhook renewal.
Changes
airtable_idfield per collection for record identityTest plan