michiim
michiim
Support for property "power" of RectAreaLight, PointLight and SpotLight Three.JS documentation: https://threejs.org/docs/#api/en/lights/RectAreaLight.power https://threejs.org/docs/#api/en/lights/PointLight.power https://threejs.org/docs/#api/en/lights/SpotLight.power
The relationModel is useful for simple models only with only a few relations. But in real world projects, every model has many relations. In ein ERP solution i would like...
Would be great to have support for zod-definitions on model level. example: ``` /// @zod.refine((val) => val.type === 'PRIVATE' || val.company !== null, { path: 'company', message: 'Required if type...
solves this problem: https://github.com/CarterGrimmeisen/zod-prisma/issues/108
if useDecimalJs = true is defined, the helper schema for Decimal fields is created but not used. details: **creates Helper (without assignment to const)** ``` z .instanceof(Decimal) .or(z.string()) .or(z.number()) .refine((value)...
I would like to use the generated schema-files also in my frontend (and not only in the backend, where these files are generated). But there is no (easy) way to...
Helper schema for Decimal fields has to be modified because decimal data loaded from db by prisma are not instance of Decimal but Prisma.Decimal. Find more information here: https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields#working-with-decimal But...
Please add support for MeshPhysicalMaterial
Would be great to have an easy solution for validation decimal "numbers" without using custom functions. Just like the way numbers are validated ex. /// @zod.decimal.lt(10).gt(1)