import { z } from 'zod'; export const createArticleSchema = z.object({ title: z.string().min(1).max(256) }); export const updateArticleSchema = z.object({ title: z.string().min(1).max(256), content: z.string().max(50000) });