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
+2
View File
@@ -384,6 +384,8 @@ export interface OAuthSession {
// (undocumented)
refreshToken?: string;
// (undocumented)
refreshTokenExpiresInSeconds?: number;
// (undocumented)
scope: string;
// (undocumented)
tokenType: string;
+1
View File
@@ -26,6 +26,7 @@ export interface OAuthSession {
scope: string;
expiresInSeconds?: number;
refreshToken?: string;
refreshTokenExpiresInSeconds?: number;
}
/** @public */