import * as z from "zod" import * as imports from "./schemas" import { CompleteWorkspace, RelatedWorkspaceModelSchema, CompleteWorkspacesOnUsers, RelatedWorkspacesOnUsersModelSchema } from "./index" export const UserModelSchema = z.object({ id: z.string(), username: z.string(), password: z.string(), role: z.string(), createdAt: z.date(), updatedAt: z.date(), deletedAt: z.date().nullish(), currentWorkspaceId: z.string(), }) export interface CompleteUser extends z.infer { currentWorkspace: CompleteWorkspace workspaces: CompleteWorkspacesOnUsers[] } /** * RelatedUserModelSchema contains all relations on your model in addition to the scalars * * NOTE: Lazy required in case of potential circular dependencies within schema */ export const RelatedUserModelSchema: z.ZodSchema = z.lazy(() => UserModelSchema.extend({ currentWorkspace: RelatedWorkspaceModelSchema, workspaces: RelatedWorkspacesOnUsersModelSchema.array(), }))