import { z } from 'zod' export const AuthPigFarmSchema = z.object({ accessToken: z.string().min(43).max(43), status: z.boolean() })