* chore: Add guest email blacklist * types * Added check to only log when we've removed one * feat: add verification logic * chore: use base exftract email * Added toLowerCase for guest email checks --------- Co-authored-by: Udit Takkar <udit222001@gmail.com>
9 lines
263 B
TypeScript
9 lines
263 B
TypeScript
import { z } from "zod";
|
|
|
|
export const ZUserEmailVerificationRequiredSchema = z.object({
|
|
userSessionEmail: z.string().optional(),
|
|
email: z.string(),
|
|
});
|
|
|
|
export type TUserEmailVerificationRequiredSchema = z.infer<typeof ZUserEmailVerificationRequiredSchema>;
|