source: src/schemas/user.ts@ 87c9f1e

main
Last change on this file since 87c9f1e was 87c9f1e, checked in by Naum Shapkarovski <naumshapkarovski@…>, 5 weeks ago

update the seed script. update the prisma schema, use mapping

  • Property mode set to 100644
File size: 493 bytes
Line 
1import { z } from 'zod';
2
3export const userRoleSchema = z.union([
4 z.literal('ADMIN'),
5 z.literal('MANAGER'),
6 z.literal('USER'),
7]);
8
9export const userSchema = z.object({
10 id: z.string().optional(),
11 uid: z.string(),
12 email: z.string().email(),
13 displayName: z.string(),
14 role: userRoleSchema,
15 tenantId: z.string(),
16});
17
18export const newUserSchema = userSchema.omit({
19 id: true,
20});
21
22export const updateUserSchema = userSchema.omit({
23 id: true,
24 uid: true,
25 tenantId: true,
26});
Note: See TracBrowser for help on using the repository browser.