Files
calendar/packages/trpc/server/routers/publicViewer/samlTenantProduct.schema.ts
T
2024-10-15 00:21:26 +00:00

10 lines
256 B
TypeScript

import { z } from "zod";
import { emailSchema } from "@calcom/lib/emailSchema";
export const ZSamlTenantProductInputSchema = z.object({
email: emailSchema,
});
export type TSamlTenantProductInputSchema = z.infer<typeof ZSamlTenantProductInputSchema>;