mirror of
https://github.com/renovatebot/renovate.git
synced 2025-02-28 18:44:03 +00:00
16 lines
317 B
TypeScript
16 lines
317 B
TypeScript
import { z } from 'zod';
|
|
|
|
const UnityReleaseNote = z.object({
|
|
url: z.string(),
|
|
});
|
|
|
|
const UnityRelease = z.object({
|
|
version: z.string(),
|
|
releaseDate: z.string(),
|
|
releaseNotes: UnityReleaseNote,
|
|
shortRevision: z.string(),
|
|
});
|
|
|
|
export const UnityReleasesJSON = z.object({
|
|
results: UnityRelease.array(),
|
|
});
|