54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
import { z } from "zod";
|
|
|
|
import { _BookingReferenceModel as BookingReference } from "@calcom/prisma/zod";
|
|
|
|
export const schemaBookingReferenceBaseBodyParams = BookingReference.pick({
|
|
type: true,
|
|
bookingId: true,
|
|
uid: true,
|
|
meetingId: true,
|
|
meetingPassword: true,
|
|
meetingUrl: true,
|
|
deleted: true,
|
|
}).partial();
|
|
|
|
export const schemaBookingReferenceReadPublic = BookingReference.pick({
|
|
id: true,
|
|
type: true,
|
|
bookingId: true,
|
|
uid: true,
|
|
meetingId: true,
|
|
meetingPassword: true,
|
|
meetingUrl: true,
|
|
deleted: true,
|
|
});
|
|
|
|
const schemaBookingReferenceCreateParams = z
|
|
.object({
|
|
type: z.string(),
|
|
uid: z.string(),
|
|
meetingId: z.string(),
|
|
meetingPassword: z.string().optional(),
|
|
meetingUrl: z.string().optional(),
|
|
deleted: z.boolean(),
|
|
})
|
|
.strict();
|
|
|
|
const schemaBookingReferenceEditParams = z
|
|
.object({
|
|
type: z.string().optional(),
|
|
uid: z.string().optional(),
|
|
meetingId: z.string().optional(),
|
|
meetingPassword: z.string().optional(),
|
|
meetingUrl: z.string().optional(),
|
|
deleted: z.boolean().optional(),
|
|
})
|
|
.strict();
|
|
|
|
export const schemaBookingCreateBodyParams = schemaBookingReferenceBaseBodyParams.merge(
|
|
schemaBookingReferenceCreateParams
|
|
);
|
|
export const schemaBookingEditBodyParams = schemaBookingReferenceBaseBodyParams.merge(
|
|
schemaBookingReferenceEditParams
|
|
);
|