From 296c3127339f31349b26b8464d2df6388bb57a1b Mon Sep 17 00:00:00 2001 From: Winston Yeo Date: Thu, 25 Jan 2024 00:35:31 +0900 Subject: [PATCH] chore: rename AuthDetailType to AuthProviderDetailType for clarity --- .../src/wallets/embedded-wallet/core/authentication.type.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/thirdweb/src/wallets/embedded-wallet/core/authentication.type.ts b/packages/thirdweb/src/wallets/embedded-wallet/core/authentication.type.ts index ef03c2303b2..35fa1ce414c 100644 --- a/packages/thirdweb/src/wallets/embedded-wallet/core/authentication.type.ts +++ b/packages/thirdweb/src/wallets/embedded-wallet/core/authentication.type.ts @@ -37,7 +37,7 @@ export type EmailAuthDetailsType = { type: "email"; } & EmailUserType; -export type AuthDetailType = +export type AuthProviderDetailType = | DiscordAuthDetailsType | GoogleAuthDetailsType | EmailAuthDetailsType;