Update zod
All checks were successful
Gitea Auto Deploy / Deploy-Container (push) Successful in 1m18s

This commit is contained in:
2025-11-18 14:45:17 +07:00
parent afdb92cc2d
commit b479708682
50 changed files with 852 additions and 663 deletions

29
src/zod/showcase.zod.ts Normal file
View File

@@ -0,0 +1,29 @@
// Generated by ts-to-zod
import { z } from "zod";
export const relicShowcaseTypeSchema = z.object({
img: z.string(),
mainAffix: z.object({
property: z.string(),
level: z.number(),
valueAffix: z.string(),
detail: z.object({
name: z.string(),
icon: z.string(),
unit: z.string(),
baseStat: z.string()
})
}),
subAffix: z.array(z.object({
property: z.string(),
valueAffix: z.string(),
detail: z.object({
name: z.string(),
icon: z.string(),
unit: z.string(),
baseStat: z.string()
}),
step: z.number(),
count: z.number()
}))
});