2
0
Files
cal/calcom/packages/trpc/server/routers/loggedInViewer/teamsAndUserProfilesQuery.schema.ts

10 lines
261 B
TypeScript
Raw Permalink Normal View History

2024-08-09 00:39:27 +02:00
import { z } from "zod";
export const ZTeamsAndUserProfilesQueryInputSchema = z
.object({
includeOrg: z.boolean().optional(),
})
.optional();
export type TTeamsAndUserProfilesQueryInputSchema = z.infer<typeof ZTeamsAndUserProfilesQueryInputSchema>;