feat: datetimes with timezones

This commit is contained in:
2025-08-24 14:54:10 +04:00
parent d5be9ce61a
commit e5602551c5
7 changed files with 53 additions and 4 deletions

View File

@ -178,6 +178,10 @@ export type DealSchema = {
* Statusid
*/
statusId: number;
/**
* Createdat
*/
createdAt: string;
};
/**

View File

@ -60,6 +60,9 @@ export const zDealSchema = z.object({
name: z.string(),
lexorank: z.string(),
statusId: z.int(),
createdAt: z.iso.datetime({
offset: true,
}),
});
/**