Co-authored-by: Keith Williams <keithwillcode@gmail.com> Co-authored-by: Omar López <zomars@me.com> Co-authored-by: Amit Sharma <74371312+Amit91848@users.noreply.github.com>
12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
import { z } from "zod";
|
|
|
|
import { emailSchema } from "@calcom/lib/emailSchema";
|
|
|
|
export const ZResendVerifyEmailSchema = z
|
|
.object({
|
|
email: emailSchema,
|
|
})
|
|
.optional();
|
|
|
|
export type TResendVerifyEmailSchema = z.infer<typeof ZResendVerifyEmailSchema>;
|