From 747712f930fc4bb76b5c13f907b028cab42750b1 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Thu, 13 Jul 2023 21:57:45 +0200 Subject: [PATCH] auth-backend: add optional token_type field in OAuthResult Signed-off-by: Patrik Oldsberg --- plugins/auth-backend/src/lib/oauth/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/auth-backend/src/lib/oauth/types.ts b/plugins/auth-backend/src/lib/oauth/types.ts index e960af2988..46009218a9 100644 --- a/plugins/auth-backend/src/lib/oauth/types.ts +++ b/plugins/auth-backend/src/lib/oauth/types.ts @@ -45,6 +45,7 @@ export type OAuthResult = { params: { id_token?: string; scope: string; + token_type?: string; expires_in: number; }; accessToken: string;