As of now, if I want to do this call: ```ts prisma.user.deleteMany() ``` The TypeScript types complain, that I need to at least provide an empty object as input: ```ts prisma.user.deleteMany({}) ``` This empty object is not necessary and should just be optional.