From d3e13c30a6e40d150952ae4c6aa411d5b2525932 Mon Sep 17 00:00:00 2001 From: Faruk AYDIN Date: Sun, 20 Nov 2022 22:57:08 +0100 Subject: [PATCH] chore: Make isRefreshTokenRequested optional for IAuth --- packages/types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/index.d.ts b/packages/types/index.d.ts index 458959ab..df2521dd 100644 --- a/packages/types/index.d.ts +++ b/packages/types/index.d.ts @@ -182,7 +182,7 @@ export interface IAuth { verifyCredentials($: IGlobalVariable): Promise; isStillVerified($: IGlobalVariable): Promise; refreshToken?($: IGlobalVariable): Promise; - isRefreshTokenRequested: boolean; + isRefreshTokenRequested?: boolean; fields: IField[]; authenticationSteps?: IAuthenticationStep[]; reconnectionSteps?: IAuthenticationStep[];