-
I have the following schema
```ts
let testObj = {
flag: true,
};
let testSchema = Joi.object({
flag: Joi.boolean(),
obj: {
value: Joi.when('flag', {
is: Joi.boolean().valid(…
-
**Describe the bug**
1. The data from the req.body for the register user controller and login controller are not validated using Joi correctly. The username, email, and password are not correctly ext…
-
### Runtime
node.js
### Runtime version
v20.10.0
### Module version
v17.13.3
### Last module version without issue
_No response_
### Used with
ether standalone or sandbox
### Any other relev…
-
I'm always frustrated when there is no validation on the incoming post request data, which can lead to inconsistent data being stored in the database and potential errors during runtime.
***Solution…
-
### Description
Currently, the `vercel/ai` SDK requires Zod as a peer dependency for internal validation tasks. However, many projects, like ours, use different validation libraries such as [Joi](h…
-
Won't let me put a name with spaces? Maybe legacy from Mario's implementation but I don't recall that.
![joi](https://cloud.githubusercontent.com/assets/22927754/24996047/fb353106-2039-11e7-9412-de…
-
-
**Description:**
Would you consider a PR for the ability to add additional Joi validation to the converted schemas?
Joi supports this using [schema concatenation](https://github.com/hapijs/joi/blob/…
-
### Is your feature request related to a problem ? Please describe. ✍️
```bash
Enhancement
Here are some benefits of using Joi validator:
1. The joi validator is feature rich and has a lot o…
-
Use [joi](https://github.com/hapijs/joi) to validate submitted file and form data. Basics are covered in this [tutorial](https://medium.com/@_expr/the-pursuit-of-hapi-ness-d82777afaa4b).
For example…