mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
748b258797
Co-authored-by: Rhys Arkins <rhys@arkins.net>
11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const ReleaseTimestampSchema = z
|
|
.object({
|
|
version: z.object({
|
|
created_at: z.string(),
|
|
}),
|
|
})
|
|
.transform(({ version: { created_at } }) => created_at)
|
|
.nullable()
|
|
.catch(null);
|