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

8 lines
207 B
TypeScript

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