import { z } from "zod"; export type TGetAttributesForTeamInputSchema = { teamId: number; }; export const ZGetAttributesForTeamInputSchema: z.ZodType = z.object({ teamId: z.number(), });