My Auth is not recognizing the User field from my prisma file. Here is the main wasp declaration: app Realti { wasp: { version: "^0.14.0" }, title: "Realti", auth: { userEntity: User, methods: { usernameAndPassword: { userSignupFields: import { userSignupFields } from "@src/components/Reusables/extrasignups", }, }, onAuthFailedRedirectTo: "/login", }, db: { system: PostgreSQL } } but my error is Type error: Undefined identifier: User.
My Prisma is: datasource db { provider = "postgresql" url = env("DATABASE_URL") }