auth-node: add refreshTokenExpiresInSeconds field to OAuthSession

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-08-20 14:42:35 +02:00
parent 23af27f5ce
commit d852a15972
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -26,6 +26,7 @@ export interface OAuthSession {
scope: string;
expiresInSeconds?: number;
refreshToken?: string;
refreshTokenExpiresInSeconds?: number;
}
/** @public */