cal.pub0.org/packages/trpc/server/routers/publicViewer/samlTenantProduct.schema.ts

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>;