@privy-io/react-auth 1.78.1 → 1.78.2-beta-20240813141643
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 +282 -282
- package/dist/index.d.ts +2 -2
- package/dist/index.js +293 -293
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1158,7 +1158,7 @@ type LoginWithCode = {
|
|
|
1158
1158
|
};
|
|
1159
1159
|
declare const EMBEDDED_WALLET_CLIENT_TYPES: readonly ["privy"];
|
|
1160
1160
|
type EmbeddedWalletClientType = (typeof EMBEDDED_WALLET_CLIENT_TYPES)[number];
|
|
1161
|
-
declare const INJECTED_WALLET_CLIENT_TYPES: readonly ["metamask", "phantom", "brave_wallet", "rainbow", "uniswap_wallet_extension", "rabby_wallet", "crypto.com_wallet_extension"];
|
|
1161
|
+
declare const INJECTED_WALLET_CLIENT_TYPES: readonly ["metamask", "phantom", "brave_wallet", "rainbow", "uniswap_wallet_extension", "uniswap_extension", "rabby_wallet", "crypto.com_wallet_extension"];
|
|
1162
1162
|
type InjectedWalletClientType = (typeof INJECTED_WALLET_CLIENT_TYPES)[number];
|
|
1163
1163
|
declare const COINBASE_WALLET_CLIENT_TYPES: readonly ["coinbase_wallet", "coinbase_smart_wallet"];
|
|
1164
1164
|
type CoinbaseWalletClientType = (typeof COINBASE_WALLET_CLIENT_TYPES)[number];
|
|
@@ -1787,7 +1787,7 @@ type PriceDisplayOptions = {
|
|
|
1787
1787
|
primary: 'native-token';
|
|
1788
1788
|
secondary: null;
|
|
1789
1789
|
};
|
|
1790
|
-
type WalletListEntry = 'metamask' | 'coinbase_wallet' | 'rainbow' | 'phantom' | 'zerion' | 'cryptocom' | 'uniswap' | 'okx_wallet' | 'detected_wallets' | 'wallet_connect' | 'rabby_wallet';
|
|
1790
|
+
type WalletListEntry = 'metamask' | 'coinbase_wallet' | 'rainbow' | 'phantom' | 'zerion' | 'cryptocom' | 'uniswap' | 'okx_wallet' | 'detected_wallets' | 'wallet_connect' | 'rabby_wallet' | 'safe';
|
|
1791
1791
|
type NonEmptyArray<T> = [T, ...T[]];
|
|
1792
1792
|
type LoginMethodOrderOption = 'email' | 'sms' | WalletListEntry | OAuthProviderType | 'farcaster' | 'telegram';
|
|
1793
1793
|
type ExternalWalletsConfig = {
|