renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
65 lines (64 loc) • 1.94 kB
TypeScript
import { z } from 'zod';
export declare const UnityPackageReleasesJSON: z.ZodObject<{
versions: z.ZodRecord<z.ZodString, z.ZodObject<{
_upm: z.ZodOptional<z.ZodObject<{
changelog: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
changelog?: string | undefined;
}, {
changelog?: string | undefined;
}>>;
documentationUrl: z.ZodOptional<z.ZodString>;
repository: z.ZodOptional<z.ZodObject<{
url: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
url?: string | undefined;
}, {
url?: string | undefined;
}>>;
version: z.ZodString;
}, "strip", z.ZodTypeAny, {
version: string;
repository?: {
url?: string | undefined;
} | undefined;
_upm?: {
changelog?: string | undefined;
} | undefined;
documentationUrl?: string | undefined;
}, {
version: string;
repository?: {
url?: string | undefined;
} | undefined;
_upm?: {
changelog?: string | undefined;
} | undefined;
documentationUrl?: string | undefined;
}>>;
time: z.ZodRecord<z.ZodString, z.ZodString>;
}, "strip", z.ZodTypeAny, {
time: Record<string, string>;
versions: Record<string, {
version: string;
repository?: {
url?: string | undefined;
} | undefined;
_upm?: {
changelog?: string | undefined;
} | undefined;
documentationUrl?: string | undefined;
}>;
}, {
time: Record<string, string>;
versions: Record<string, {
version: string;
repository?: {
url?: string | undefined;
} | undefined;
_upm?: {
changelog?: string | undefined;
} | undefined;
documentationUrl?: string | undefined;
}>;
}>;