From e5146c8fba0d593cfb35fbfa885b90611559f883 Mon Sep 17 00:00:00 2001 From: Stojan Dimitrovski Date: Fri, 19 Jan 2024 15:34:33 +0100 Subject: [PATCH] feat: add kakao to sign in with ID token --- src/lib/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/types.ts b/src/lib/types.ts index bcad56d2e..c1edc35dc 100644 --- a/src/lib/types.ts +++ b/src/lib/types.ts @@ -572,8 +572,8 @@ export type SignInWithOAuthCredentials = { } export type SignInWithIdTokenCredentials = { - /** Provider name or OIDC `iss` value identifying which provider should be used to verify the provided token. Supported names: `google`, `apple`, `azure`, `facebook`, `keycloak` (deprecated). */ - provider: 'google' | 'apple' | 'azure' | 'facebook' | string + /** Provider name or OIDC `iss` value identifying which provider should be used to verify the provided token. Supported names: `google`, `apple`, `azure`, `facebook`, `kakao`, `keycloak` (deprecated). */ + provider: 'google' | 'apple' | 'azure' | 'facebook' | 'kakao' | string /** OIDC ID token issued by the specified provider. The `iss` claim in the ID token must match the supplied provider. Some ID tokens contain an `at_hash` which require that you provide an `access_token` value to be accepted properly. If the token contains a `nonce` claim you must supply the nonce used to obtain the ID token. */ token: string /** If the ID token contains an `at_hash` claim, then the hash of this value is compared to the value in the ID token. */