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>
13 lines
336 B
TypeScript
13 lines
336 B
TypeScript
import { z } from "zod";
|
|
|
|
import { emailSchema } from "@calcom/lib/emailSchema";
|
|
|
|
export const ZResendInvitationInputSchema = z.object({
|
|
teamId: z.number(),
|
|
email: emailSchema,
|
|
language: z.string(),
|
|
isOrg: z.boolean().default(false),
|
|
});
|
|
|
|
export type TResendInvitationInputSchema = z.infer<typeof ZResendInvitationInputSchema>;
|