tianji/prisma/zod/schemas/index.ts
moonrailgun ec591f0c54 feat: allow display current response value in monitor list
useful for monitor page to display current value
2024-01-13 02:16:57 +08:00

9 lines
175 B
TypeScript

import { z } from 'zod';
export const MonitorStatusPageListSchema = z.array(
z.object({
id: z.string(),
showCurrent: z.boolean().default(false).optional(),
})
);