@privy-io/react-auth 1.14.1-beta.2 → 1.14.1-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.js +25 -25
- package/dist/index.d.ts +2 -2
- package/dist/index.js +37 -37
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -564,11 +564,11 @@ interface ResponseOAuthGithub {
|
|
|
564
564
|
email: string | null;
|
|
565
565
|
verified_at: number;
|
|
566
566
|
}
|
|
567
|
-
type
|
|
567
|
+
type LinkedAccountsResponseType = Array<ResponseEmailAccount | ResponsePhoneAccount | ResponseEthereumAccount | ResponseOAuthGoogle | ResponseOAuthTwitter | ResponseOAuthDiscord | ResponseOAuthGithub>;
|
|
568
568
|
interface GetCurrentUserResponse {
|
|
569
569
|
id: string;
|
|
570
570
|
created_at: number;
|
|
571
|
-
linked_accounts:
|
|
571
|
+
linked_accounts: LinkedAccountsResponseType;
|
|
572
572
|
}
|
|
573
573
|
|
|
574
574
|
/**
|