parts and areas tested

This commit is contained in:
2025-11-24 21:04:14 +03:00
parent a5a7a7e7b5
commit eedfed1a65
131 changed files with 5429 additions and 471 deletions

View File

@@ -1,6 +1,7 @@
import { z } from "zod"
export const buildAreaAddSchema = z.object({
buildId: z.string(),
areaName: z.string(),
areaCode: z.string(),
areaType: z.string(),
@@ -10,7 +11,7 @@ export const buildAreaAddSchema = z.object({
width: z.number(),
size: z.number(),
expiryStarts: z.string().optional(),
expiryEnds: z.string().optional(),
expiryEnds: z.string().optional()
});
export type BuildAreaAdd = z.infer<typeof buildAreaAddSchema>;