z.transform() function. Basically I've got a string field that I'd like to convert to a luxon DateTime that I've been doing with z.string().transform(date => DateTime.fromISO(date, { zone: "Pacific/Auckland" }))Schema<string, DateTime>. I've faffed around and come up with this, but it feels like a lot to just do what was a one liner transformation