From 9cba552453ae4089a961c2d4719ac921ae0b69e0 Mon Sep 17 00:00:00 2001 From: admtracksteel Date: Sun, 17 May 2026 18:31:13 +0000 Subject: [PATCH] fix(api-gateway): Fix AuthorizedRequest TypeScript compilation error --- services/api-gateway/src/middleware/authorization.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/api-gateway/src/middleware/authorization.ts b/services/api-gateway/src/middleware/authorization.ts index 0fce557..f40b07e 100644 --- a/services/api-gateway/src/middleware/authorization.ts +++ b/services/api-gateway/src/middleware/authorization.ts @@ -5,6 +5,8 @@ export interface AuthorizedRequest extends Request { user?: { id: string; email: string; + subscription: string; + roles: string[]; [key: string]: any; }; }