UNPKG

appwrite-utils

Version:
11 lines (10 loc) 234 B
import { z } from "zod"; export const AuthUserSchema = z.object(); export const AuthUserCreateSchema = AuthUserSchema.pick({ email: true, password: true, name: true, phone: true, prefs: true, labels: true, });