auth-backend: add optional token_type field in OAuthResult

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-07-13 21:57:45 +02:00
parent 1c522713cd
commit 747712f930
@@ -45,6 +45,7 @@ export type OAuthResult = {
params: {
id_token?: string;
scope: string;
token_type?: string;
expires_in: number;
};
accessToken: string;