Update db schema + add hasher func

This commit is contained in:
Kevin Puig
2025-09-27 14:53:15 -04:00
parent 072bd7f0d7
commit 0818d9828a
3 changed files with 11 additions and 7 deletions

View File

@@ -18,4 +18,6 @@ export const createUserSchema = z.object({
admin: z.boolean().default(false),
})
export type QueryUserByIdInput = z.infer<typeof queryUserByIdSchema>
export type QueryAllUsersByInstanceIdInput = z.infer<typeof queryAllUsersByInstanceId>
export type CreateUserInput = z.infer<typeof createUserSchema>