2
0
Files
cal/calcom/packages/trpc/server/routers/loggedInViewer/deleteMe.schema.ts
2024-08-09 00:39:27 +02:00

9 lines
210 B
TypeScript

import { z } from "zod";
export const ZDeleteMeInputSchema = z.object({
password: z.string(),
totpCode: z.string().optional(),
});
export type TDeleteMeInputSchema = z.infer<typeof ZDeleteMeInputSchema>;