Files
twenty/packages/twenty-tinybird/pipes/materializeWebhookEvent.pipe
Antoine Moreaux da527f1780 chore(ci): update Tinybird CI workflow (#11033)
Added a new job to check for changed files before executing the CI
workflow. Integrated Tinybird local service, updated environment
variables, and refined the CI steps for better functionality and
clarity.
2025-03-21 16:32:24 +01:00

17 lines
464 B
Plaintext

NODE mv
SQL >
SELECT
timestamp,
workspaceId,
JSONExtractString(payload, 'webhookId') as webhookId,
JSONExtractString(payload, 'url') as url,
JSONExtractBool(payload, 'success') as success,
JSONExtractInt(payload, 'status') as status,
JSONExtractString(payload, 'eventName') as eventName,
version
FROM 'event'
WHERE action = 'webhook.response'
TYPE MATERIALIZED
DATASOURCE webhookEventMV