Merge pull request #29485 from overleaf/mfb-from-joi-to-zod-clsi-cache-revert

Reapply "migrate from joi to zod CLSI-CACHE service"

GitOrigin-RevId: 638b9e21b8cf18c1733f8a01375dab4099fe5d73
This commit is contained in:
Maria Florencia Besteiro Gonzalez
2025-11-04 09:06:10 +00:00
committed by Copybot
parent c3881084be
commit 8cd2f6ac46
6 changed files with 28 additions and 24 deletions
@@ -0,0 +1,17 @@
const { isZodErrorLike, fromError } = require('zod-validation-error')
/**
* @typedef {import('express').ErrorRequestHandler} ErrorRequestHandler
*/
const handleValidationError = [
/** @type {ErrorRequestHandler} */
(err, req, res, next) => {
if (!isZodErrorLike(err)) {
return next(err)
}
res.status(400).json({ ...fromError(err), statusCode: 400 })
},
]
module.exports = { handleValidationError }
+2
View File
@@ -2,10 +2,12 @@ const { ParamsError } = require('./Errors')
const { z } = require('zod')
const { zz } = require('./zodHelpers')
const { validateReq } = require('./validateReq')
const { handleValidationError } = require('./handleValidationError')
module.exports = {
z,
zz,
validateReq,
handleValidationError,
ParamsError,
}
+2 -1
View File
@@ -22,7 +22,8 @@
"dependencies": {
"@overleaf/o-error": "*",
"mongodb": "^6.12.0",
"zod": "^4.1.8"
"zod": "^4.1.8",
"zod-validation-error": "^4.0.1"
},
"devDependencies": {
"typescript": "^5.0.4",