Is there a way to support `datetime` / `date` to `Date` conversions? Currently, they are converted to `string`. - Python input: ```py from datetime import date class MyModel(BaseModel): start_date: date ``` - TypeScript output: ```ts export interface MyModel { start_date: string; // should be Date } ```