We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f39867a commit 0adbd10Copy full SHA for 0adbd10
packages/core/src/providers/keycloak.ts
@@ -8,7 +8,7 @@
8
*
9
* @module providers/keycloak
10
*/
11
-import type { OAuthConfig, OAuthUserConfig } from "./index.js"
+import type { OIDCConfig, OIDCUserConfig } from "./index.js"
12
13
export interface KeycloakProfile extends Record<string, any> {
14
exp: number
@@ -99,8 +99,8 @@ export interface KeycloakProfile extends Record<string, any> {
99
* :::
100
101
export default function Keycloak<P extends KeycloakProfile>(
102
- options: OAuthUserConfig<P>
103
-): OAuthConfig<P> {
+ options: OIDCUserConfig<P>
+): OIDCConfig<P> {
104
return {
105
id: "keycloak",
106
name: "Keycloak",
0 commit comments