Skip to content
Merged
1,484 changes: 665 additions & 819 deletions api/package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
"@xmldom/xmldom": "^0.8",
"body-parser": "^2.2.1",
"bull-arena": "^4.9.2",
"bullmq": "^4.18.3",
"bullmq": "^5.7",
"cookie-parser": "^1",
"cors": "^2.8.5",
"debug": "~4.4.3",
"ejs": "^3",
"ejs": "^4",
"express": "^5.2.1",
"express-session": "^1",
"formidable": "^3.5.4",
Expand Down Expand Up @@ -59,17 +59,17 @@
"@types/jest": "^30",
"@types/node": "^25",
"@typescript-eslint/eslint-plugin": "^8.52",
"@typescript-eslint/parser": "8.52.0",
"eslint": "^9",
"@typescript-eslint/parser": "^8.52",
"eslint": "^10",
"eslint-config-prettier": "^10",
"eslint-plugin-jsdoc": "^61",
"eslint-plugin-jsdoc": "^62",
"eslint-plugin-prettier": "^5",
"jest": "^30",
"nodemon": "^3",
"prettier": "^3",
"supertest": "^7",
"ts-jest": "^29",
"typescript": "^5",
"typescript-eslint": "^8.52.0"
"typescript-eslint": "^8.52"
}
}
2 changes: 1 addition & 1 deletion api/src/routes/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export function getAuthRouter(): Router {
});
});

authRouter.get("/token/confirm/:token", async function (req: Request, res: Response) {
authRouter.get("/token/confirm/:token", async function (req: Request<{ token: string }>, res: Response) {
const isGood = await Database.getInstance().confirmToken(req.params.token);
res.sendStatus(isGood ? 200 : 401);
});
Expand Down
Loading