From cd8a2d74a16178581e1ba0b93f43d504bb2ca11b Mon Sep 17 00:00:00 2001 From: NicolasMontone Date: Mon, 16 Dec 2024 14:19:25 -0300 Subject: [PATCH] fix(auth): rename oauthRedirectUrl to oauthRedirectUri in ConnectTokenOptions --- src/types/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/auth.ts b/src/types/auth.ts index 14d9f66..4303d91 100644 --- a/src/types/auth.ts +++ b/src/types/auth.ts @@ -4,7 +4,7 @@ export type ConnectTokenOptions = { /** A unique identifier of the user, usually used the UserId of your app */ clientUserId?: string /** Url where the user will be redirected to after the oauth flow */ - oauthRedirectUrl?: string + oauthRedirectUri?: string /** Avoid duplicate items per user */ avoidDuplicates?: boolean }