cal.pub0.org/lib/validations/schedule.ts

15 lines
426 B
TypeScript
Raw Normal View History

2022-04-01 23:55:41 +00:00
import { z } from "zod";
import { _ScheduleModel as Schedule } from "@calcom/prisma/zod";
2022-04-01 23:55:41 +00:00
const schemaScheduleBaseBodyParams = Schedule.omit({ id: true }).partial();
const schemaScheduleRequiredParams = z.object({
userId: z.number(),
name: z.string(),
});
export const schemaScheduleBodyParams = schemaScheduleBaseBodyParams.merge(schemaScheduleRequiredParams);
export const schemaSchedulePublic = Schedule.omit({});