1import { z } from "zod"; 2 3export const TelegramSchema = z.object({ 4 telegram: z.object({ 5 chatId: z.string(), 6 }), 7});