UNPKG

alepha

Version:

Easy-to-use modern TypeScript framework for building many kind of applications.

8 lines (6 loc) 224 B
import { z } from "alepha"; export const createApiKeyBodySchema = z.object({ name: z.text({ minLength: 1, maxLength: 100 }), description: z.text({ maxLength: 500 }).optional(), expiresAt: z.datetime().optional(), });