From cc0e6431d435646db4c08fa71fecb6b29657087f Mon Sep 17 00:00:00 2001 From: James Hegedus Date: Sat, 21 Aug 2021 10:58:48 +1000 Subject: [PATCH] fix: rawBody is optional type in funcs framework --- src/common/providers/https.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/providers/https.ts b/src/common/providers/https.ts index 67c63613f..89c4fa4fd 100644 --- a/src/common/providers/https.ts +++ b/src/common/providers/https.ts @@ -32,7 +32,7 @@ import { apps } from '../../apps'; /** @hidden */ export interface Request extends express.Request { - rawBody: Buffer; + rawBody?: Buffer; } /**