mirror of
https://github.com/xCyanGrizzly/DragonsStash.git
synced 2026-05-11 06:11:15 +00:00
20 lines
828 B
TypeScript
20 lines
828 B
TypeScript
import { z } from "zod/v4";
|
|
import { RESIN_TYPES } from "@/lib/constants";
|
|
|
|
export const resinSchema = z.object({
|
|
name: z.string().min(1, "Name is required").max(128),
|
|
brand: z.string().min(1, "Brand is required").max(64),
|
|
resinType: z.enum(RESIN_TYPES),
|
|
color: z.string().min(1, "Color name is required").max(64),
|
|
colorHex: z.string().regex(/^#[0-9A-Fa-f]{6}$/, "Invalid hex color"),
|
|
bottleSize: z.coerce.number().positive("Bottle size must be positive"),
|
|
usedML: z.coerce.number().min(0).default(0),
|
|
vendorId: z.string().optional().or(z.literal("")),
|
|
locationId: z.string().optional().or(z.literal("")),
|
|
purchaseDate: z.string().optional().or(z.literal("")),
|
|
cost: z.coerce.number().min(0).optional(),
|
|
notes: z.string().max(1024).optional(),
|
|
});
|
|
|
|
export type ResinInput = z.output<typeof resinSchema>;
|