29 lines
959 B
TypeScript
29 lines
959 B
TypeScript
|
import * as z from "zod"
|
||
|
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<typeof UserModelSchema> {
|
||
|
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<CompleteUser> = z.lazy(() => UserModelSchema.extend({
|
||
|
currentWorkspace: RelatedWorkspaceModelSchema,
|
||
|
workspaces: RelatedWorkspacesOnUsersModelSchema.array(),
|
||
|
}))
|