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,6 @@
import { z } from "zod"
export const buildAddressUpdateSchema = z.object({
export const buildSitesUpdateSchema = z.object({
siteNo: z.string().optional(),
siteName: z.string().optional(),
@@ -9,4 +9,4 @@ export const buildAddressUpdateSchema = z.object({
});
export type BuildAddressUpdate = z.infer<typeof buildAddressUpdateSchema>;
export type BuildSitesUpdate = z.infer<typeof buildSitesUpdateSchema>;