Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
235 Bytes
import { idSchema } from "@reactive-resume/schema";
import { z } from "zod";
export const payloadSchema = z.object({
id: idSchema,
isTwoFactorAuth: z.boolean().optional(),
});
export type Payload = z.infer<typeof payloadSchema>;