resend.onDomainUpdated handles domain.updated.
automations/resend-domain-updated.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run an automation when a Resend domain changes.
resend.onDomainUpdated handles domain.updated.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Resend domain updated", () => {
resend.onDomainUpdated().transform(({ id, status }) => ({ id, status }))
})