glideapps / quicktype

Generate types and converters from JSON, Schema, and GraphQL
https://app.quicktype.io
Apache License 2.0
12.42k stars 1.08k forks source link

Add TypeScript Zod support for strings with date-time format #2351

Closed danwsong closed 1 year ago

danwsong commented 1 year ago

The TypeScript Zod generator currently converts strings with the date-time format to zod.string(). This modifies the generator to emit zod.coerce.date() instead, matching the TypeScript Flow generator.

dvdsgl commented 1 year ago

Thank you!