Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
449 Bytes
import { idSchema } from "@reactive-resume/schema";
import { z } from "zod";
export const secretsSchema = z.object({
id: idSchema,
password: z.string().nullable(),
lastSignedIn: z.date().nullable(),
verificationToken: z.string().nullable(),
twoFactorSecret: z.string().nullable(),
twoFactorBackupCodes: z.array(z.string()).default([]),
refreshToken: z.string().nullable(),
resetToken: z.string().nullable(),
userId: idSchema,
});