updated living space add list updagte

This commit is contained in:
2025-11-29 12:31:05 +03:00
parent eaca36573e
commit d22fc017df
35 changed files with 858 additions and 126 deletions

View File

@@ -0,0 +1,19 @@
import { z } from "zod";
export const schema = z.object({
_id: z.string(),
uuid: z.string(),
build: z.string(),
part: z.string(),
userType: z.string(),
company: z.string(),
person: z.string(),
createdAt: z.string(),
updatedAt: z.string(),
expiryEnds: z.string(),
expiryStarts: z.string(),
});
export type schemaType = z.infer<typeof schema>;