feat: Add isRefreshTokenRequested condition to auth in global variable

This commit is contained in:
Faruk AYDIN
2022-11-20 22:28:31 +01:00
committed by Ali BARIN
parent 166dda4a4b
commit 6bf0e799a1
4 changed files with 18 additions and 21 deletions

View File

@@ -181,7 +181,8 @@ export interface IAuth {
generateAuthUrl?($: IGlobalVariable): Promise<void>;
verifyCredentials($: IGlobalVariable): Promise<void>;
isStillVerified($: IGlobalVariable): Promise<boolean>;
refreshAccessToken?($: IGlobalVariable): Promise<void>;
refreshToken?($: IGlobalVariable): Promise<void>;
isRefreshTokenRequested: boolean;
fields: IField[];
authenticationSteps?: IAuthenticationStep[];
reconnectionSteps?: IAuthenticationStep[];