From 59c389b6e78cd4e9968d575dbaf5824edc8a1464 Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Thu, 13 Aug 2020 11:12:56 +0200 Subject: [PATCH] fix(typescript): add missing rpInitiatedLogout types --- types/index.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/types/index.d.ts b/types/index.d.ts index 4d4ccdd01..118e06eab 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -984,6 +984,12 @@ export interface Configuration { ack?: 'draft-02' | 'draft-03' }, + rpInitiatedLogout?: { + enabled?: boolean, + postLogoutSuccessSource?: (ctx: KoaContextWithOIDC) => CanBePromise, + logoutSource?: (ctx: KoaContextWithOIDC, form: string) => CanBePromise + }, + mTLS?: { enabled?: boolean; certificateBoundAccessTokens?: boolean;