8 lines
160 B
JavaScript
8 lines
160 B
JavaScript
|
|
import { z } from "zod";
|
||
|
|
const update_profile = z.object({
|
||
|
|
fullName: z.string().optional(),
|
||
|
|
});
|
||
|
|
export const profile_validations = {
|
||
|
|
update_profile,
|
||
|
|
};
|