From f22257977d915f4c49c96e577a1d1a2c172e9863 Mon Sep 17 00:00:00 2001 From: Agusti Fernandez Pardo Date: Fri, 20 May 2022 03:01:47 +0200 Subject: [PATCH] fix: body any --- lib/helpers/verifyApiKey.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/helpers/verifyApiKey.ts b/lib/helpers/verifyApiKey.ts index 12a92e35a5..6d07d72d99 100644 --- a/lib/helpers/verifyApiKey.ts +++ b/lib/helpers/verifyApiKey.ts @@ -8,8 +8,9 @@ import prisma from "@calcom/prisma"; /** @todo: remove once `@calcom/types` is updated with it.*/ declare module "next" { export interface NextApiRequest extends IncomingMessage { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + body: any; userId: number; - body: unknown; method: string; query: { apiKey?: string;