* Extracts a human-readable title from a Webflow CMS item.
(item: WebflowItem)
| 75 | * Extracts a human-readable title from a Webflow CMS item. |
| 76 | */ |
| 77 | function extractItemTitle(item: WebflowItem): string { |
| 78 | const fieldData = item.fieldData || {} |
| 79 | return (fieldData.name as string) || (fieldData.title as string) || 'Untitled' |
| 80 | } |
| 81 | |
| 82 | export const webflowConnector: ConnectorConfig = { |
| 83 | ...webflowConnectorMeta, |