UNPKG

@tmlmobilidade/types

Version:
16 lines (15 loc) 305 B
/* * */ import { UserSchema } from './user.js'; import { z } from 'zod'; /* * */ export const SimplifiedUserSchema = UserSchema .pick({ _id: true, first_name: true, last_name: true, organization_id: true, seen_last_at: true, }) .extend({ organization_name: z.string(), });