1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-12 13:48:35 +02:00

fix: upgrade @types/node to v16.18.3 (#2365)

This pr upgrade @types/node to v16.18.3.
This also detected some inconsitent retrun types that I decided to fix.
This commit is contained in:
Ivar Conradi Østhus 2022-11-10 08:20:15 +01:00 committed by GitHub
parent 5dd319e414
commit 1312579bf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 15 additions and 8 deletions

View File

@ -152,7 +152,7 @@
"@types/make-fetch-happen": "10.0.0", "@types/make-fetch-happen": "10.0.0",
"@types/memoizee": "0.4.8", "@types/memoizee": "0.4.8",
"@types/mime": "3.0.1", "@types/mime": "3.0.1",
"@types/node": "16.6.1", "@types/node": "16.18.3",
"@types/nodemailer": "6.4.6", "@types/nodemailer": "6.4.6",
"@types/owasp-password-strength-test": "1.3.0", "@types/owasp-password-strength-test": "1.3.0",
"@types/semver": "7.3.13", "@types/semver": "7.3.13",

View File

@ -24,6 +24,7 @@ const returns415: (t: jest.Mock) => Response = (t) => ({
const expectNoCall: (t: jest.Mock) => Response = (t) => ({ const expectNoCall: (t: jest.Mock) => Response = (t) => ({
// @ts-ignore // @ts-ignore
status: () => ({ status: () => ({
// @ts-ignore
end: () => expect(t).toHaveBeenCalledTimes(0), end: () => expect(t).toHaveBeenCalledTimes(0),
}), }),
}); });

View File

@ -69,9 +69,9 @@ export default class ClientMetricsController extends Controller {
try { try {
await this.metricsV2.registerClientMetrics(data, clientIp); await this.metricsV2.registerClientMetrics(data, clientIp);
return res.status(202).end(); res.status(202).end();
} catch (e) { } catch (e) {
return res.status(400).end(); res.status(400).end();
} }
} }
} }

View File

@ -67,6 +67,6 @@ export default class RegisterController extends Controller {
const { body: data, ip: clientIp, user } = req; const { body: data, ip: clientIp, user } = req;
data.environment = RegisterController.resolveEnvironment(user, data); data.environment = RegisterController.resolveEnvironment(user, data);
await this.clientInstanceService.registerClient(data, clientIp); await this.clientInstanceService.registerClient(data, clientIp);
return res.status(202).end(); res.status(202).end();
} }
} }

View File

@ -89,9 +89,9 @@ export class PublicInviteController extends Controller {
const { token } = req.params; const { token } = req.params;
const valid = await this.publicSignupTokenService.validate(token); const valid = await this.publicSignupTokenService.validate(token);
if (valid) { if (valid) {
return res.status(200).end(); res.status(200).end();
} else { } else {
return res.status(400).end(); res.status(400).end();
} }
} }
@ -102,7 +102,8 @@ export class PublicInviteController extends Controller {
const { token } = req.params; const { token } = req.params;
const valid = await this.publicSignupTokenService.validate(token); const valid = await this.publicSignupTokenService.validate(token);
if (!valid) { if (!valid) {
return res.status(400).end(); res.status(400).end();
return;
} }
const user = await this.publicSignupTokenService.addTokenUser( const user = await this.publicSignupTokenService.addTokenUser(
token, token,

View File

@ -1546,11 +1546,16 @@
"@types/node" "*" "@types/node" "*"
form-data "^3.0.0" form-data "^3.0.0"
"@types/node@*", "@types/node@16.6.1": "@types/node@*":
version "16.6.1" version "16.6.1"
resolved "https://registry.npmjs.org/@types/node/-/node-16.6.1.tgz" resolved "https://registry.npmjs.org/@types/node/-/node-16.6.1.tgz"
integrity sha512-Sr7BhXEAer9xyGuCN3Ek9eg9xPviCF2gfu9kTfuU2HkTVAMYSDeX40fvpmo72n5nansg3nsBjuQBrsS28r+NUw== integrity sha512-Sr7BhXEAer9xyGuCN3Ek9eg9xPviCF2gfu9kTfuU2HkTVAMYSDeX40fvpmo72n5nansg3nsBjuQBrsS28r+NUw==
"@types/node@16.18.3":
version "16.18.3"
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.3.tgz#d7f7ba828ad9e540270f01ce00d391c54e6e0abc"
integrity sha512-jh6m0QUhIRcZpNv7Z/rpN+ZWXOicUUQbSoWks7Htkbb9IjFQj4kzcX/xFCkjstCj5flMsN8FiSvt+q+Tcs4Llg==
"@types/nodemailer@6.4.6": "@types/nodemailer@6.4.6":
version "6.4.6" version "6.4.6"
resolved "https://registry.yarnpkg.com/@types/nodemailer/-/nodemailer-6.4.6.tgz#ce21b4b474a08f672f182e15982b7945dde1f288" resolved "https://registry.yarnpkg.com/@types/nodemailer/-/nodemailer-6.4.6.tgz#ce21b4b474a08f672f182e15982b7945dde1f288"