chore: Make isRefreshTokenRequested optional for IAuth

This commit is contained in:
Faruk AYDIN
2022-11-21 09:43:04 +01:00
committed by Ali BARIN
parent 6bf0e799a1
commit d3e13c30a6
+1 -1
View File
@@ -182,7 +182,7 @@ export interface IAuth {
verifyCredentials($: IGlobalVariable): Promise<void>;
isStillVerified($: IGlobalVariable): Promise<boolean>;
refreshToken?($: IGlobalVariable): Promise<void>;
isRefreshTokenRequested: boolean;
isRefreshTokenRequested?: boolean;
fields: IField[];
authenticationSteps?: IAuthenticationStep[];
reconnectionSteps?: IAuthenticationStep[];