@swype-org/react-sdk 0.2.311 → 0.2.315
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/index.cjs +852 -202
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +53 -2
- package/dist/index.d.ts +53 -2
- package/dist/index.js +852 -204
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.d.cts
CHANGED
|
@@ -792,7 +792,7 @@ interface SelectSourceChainChoice {
|
|
|
792
792
|
}[];
|
|
793
793
|
}
|
|
794
794
|
|
|
795
|
-
type ScreenName = 'loading' | 'manual-transfer' | 'login' | 'success' | 'processing' | 'confirm-sign' | 'select-source' | 'open-wallet' | 'link-tokens' | 'wallet-picker' | 'token-picker' | 'guest-source-picker' | 'amount-too-low' | 'deposit' | 'deposit-options';
|
|
795
|
+
type ScreenName = 'loading' | 'manual-transfer' | 'login' | 'welcome-back' | 'success' | 'processing' | 'confirm-sign' | 'select-source' | 'open-wallet' | 'link-tokens' | 'wallet-picker' | 'token-picker' | 'guest-source-picker' | 'amount-too-low' | 'deposit' | 'deposit-options';
|
|
796
796
|
interface MobileFlowState {
|
|
797
797
|
deeplinkUri: string;
|
|
798
798
|
providerId: string | null;
|
|
@@ -818,6 +818,8 @@ type PaymentPhase = {
|
|
|
818
818
|
step: 'manual-transfer';
|
|
819
819
|
} | {
|
|
820
820
|
step: 'login';
|
|
821
|
+
} | {
|
|
822
|
+
step: 'welcome-back';
|
|
821
823
|
} | {
|
|
822
824
|
step: 'deposit-options';
|
|
823
825
|
} | {
|
|
@@ -1400,6 +1402,21 @@ interface PaymentState {
|
|
|
1400
1402
|
* when the host later supplies a non-empty amount.
|
|
1401
1403
|
*/
|
|
1402
1404
|
requireAmountEntry: boolean;
|
|
1405
|
+
/**
|
|
1406
|
+
* Latched `true` only when Privy first becomes ready while the user is
|
|
1407
|
+
* already authenticated (a persisted session from a prior visit). Stays
|
|
1408
|
+
* `false` for users who open logged-out and sign in during the session —
|
|
1409
|
+
* the `ready: false → true` transition has already happened by then. Gates
|
|
1410
|
+
* `WelcomeBackScreen` so we only re-greet returning passkey users.
|
|
1411
|
+
*/
|
|
1412
|
+
authenticatedOnOpen: boolean;
|
|
1413
|
+
/**
|
|
1414
|
+
* Set when the user advances off `WelcomeBackScreen` (tapped "Complete setup
|
|
1415
|
+
* & Deposit"). Flips the welcome-back derivation off so the next
|
|
1416
|
+
* `resolvePhase` falls through to `wallet-picker`. Resets on reload by design
|
|
1417
|
+
* — a genuine reopen should re-greet.
|
|
1418
|
+
*/
|
|
1419
|
+
welcomeBackAcknowledged: boolean;
|
|
1403
1420
|
}
|
|
1404
1421
|
interface InitialStateConfig {
|
|
1405
1422
|
depositAmount: number | null;
|
|
@@ -1453,6 +1470,8 @@ interface StepHandlers {
|
|
|
1453
1470
|
onBackFromSubflow: () => void;
|
|
1454
1471
|
onLogin: () => void;
|
|
1455
1472
|
onCancelLogin: () => void;
|
|
1473
|
+
/** Advance a returning user off WelcomeBackScreen toward the wallet picker. */
|
|
1474
|
+
onAcknowledgeWelcomeBack: () => void;
|
|
1456
1475
|
/**
|
|
1457
1476
|
* Update the in-flow amount-entry value (string display). Called by
|
|
1458
1477
|
* DepositScreen entry mode on every keypress / preset tap. The view-model
|
|
@@ -1866,6 +1885,25 @@ interface DepositOptionsScreenProps {
|
|
|
1866
1885
|
*/
|
|
1867
1886
|
declare function DepositOptionsScreen({ onToAddress, onSignInWithBlink, onClose, }: DepositOptionsScreenProps): react_jsx_runtime.JSX.Element;
|
|
1868
1887
|
|
|
1888
|
+
interface WelcomeBackScreenProps {
|
|
1889
|
+
/** Recessed "Send Crypto Manually" row. Navigates to the manual-transfer flow. */
|
|
1890
|
+
onToAddress: () => void;
|
|
1891
|
+
/**
|
|
1892
|
+
* Primary "Complete setup & Deposit" CTA. Advances the returning user to the
|
|
1893
|
+
* wallet picker to link a wallet and continue the deposit flow.
|
|
1894
|
+
*/
|
|
1895
|
+
onComplete: () => void;
|
|
1896
|
+
/** Dismiss the widget. When set, renders a round (X) close button in the top-right. */
|
|
1897
|
+
onClose?: () => void;
|
|
1898
|
+
}
|
|
1899
|
+
/**
|
|
1900
|
+
* Re-greeting screen for returning passkey users who reopen the full-widget
|
|
1901
|
+
* flow with a persisted session but no linked wallet. Mirrors
|
|
1902
|
+
* `DepositOptionsScreen`, but the primary CTA reads "Complete setup & Deposit"
|
|
1903
|
+
* and routes onward to the wallet picker rather than to login.
|
|
1904
|
+
*/
|
|
1905
|
+
declare function WelcomeBackScreen({ onToAddress, onComplete, onClose, }: WelcomeBackScreenProps): react_jsx_runtime.JSX.Element;
|
|
1906
|
+
|
|
1869
1907
|
interface BlinkErrorScreenProps {
|
|
1870
1908
|
/** Heading text shown under the illustration. */
|
|
1871
1909
|
title: string;
|
|
@@ -1955,6 +1993,19 @@ interface WalletPickerScreenProps {
|
|
|
1955
1993
|
}
|
|
1956
1994
|
declare function WalletPickerScreen({ providers, loading, useDeeplink, error, preparedSessionsByProvider, preparingLinks, directLinkCards, onPrepareProvider, onSelectProvider, onSelectWalletConnectWallet, onBack, onLogout, isDesktop, }: WalletPickerScreenProps): react_jsx_runtime.JSX.Element;
|
|
1957
1995
|
|
|
1996
|
+
interface ManualTransferPasskeyScreenProps {
|
|
1997
|
+
onCreatePasskey: () => void;
|
|
1998
|
+
/** "No thanks" / close action — dismisses the modal. */
|
|
1999
|
+
onNoThanks: () => void;
|
|
2000
|
+
/** Delivered amount in USD, rendered as the "$X deposited" title. */
|
|
2001
|
+
amountUsd?: number;
|
|
2002
|
+
loading?: boolean;
|
|
2003
|
+
error?: string | null;
|
|
2004
|
+
onBack?: () => void;
|
|
2005
|
+
onClose?: () => void;
|
|
2006
|
+
}
|
|
2007
|
+
declare function ManualTransferPasskeyScreen({ onCreatePasskey, onNoThanks, amountUsd, loading, error, onBack, onClose, }: ManualTransferPasskeyScreenProps): react_jsx_runtime.JSX.Element;
|
|
2008
|
+
|
|
1958
2009
|
/**
|
|
1959
2010
|
* A single {token, chain} pair the user may pick as the deposit source on
|
|
1960
2011
|
* the Setup / Deposit screens. Previously lived in `SetupScreen.tsx` but is
|
|
@@ -2432,4 +2483,4 @@ declare function clearDebugEntries(): void;
|
|
|
2432
2483
|
*/
|
|
2433
2484
|
declare function useBlinkDebugLog(): DebugEntry[];
|
|
2434
2485
|
|
|
2435
|
-
export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositOptionsScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, appendDebug, api as blinkApi, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useTransferPolling, useTransferSigning };
|
|
2486
|
+
export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositOptionsScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, ManualTransferPasskeyScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, WelcomeBackScreen, appendDebug, api as blinkApi, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useTransferPolling, useTransferSigning };
|
package/dist/index.d.ts
CHANGED
|
@@ -792,7 +792,7 @@ interface SelectSourceChainChoice {
|
|
|
792
792
|
}[];
|
|
793
793
|
}
|
|
794
794
|
|
|
795
|
-
type ScreenName = 'loading' | 'manual-transfer' | 'login' | 'success' | 'processing' | 'confirm-sign' | 'select-source' | 'open-wallet' | 'link-tokens' | 'wallet-picker' | 'token-picker' | 'guest-source-picker' | 'amount-too-low' | 'deposit' | 'deposit-options';
|
|
795
|
+
type ScreenName = 'loading' | 'manual-transfer' | 'login' | 'welcome-back' | 'success' | 'processing' | 'confirm-sign' | 'select-source' | 'open-wallet' | 'link-tokens' | 'wallet-picker' | 'token-picker' | 'guest-source-picker' | 'amount-too-low' | 'deposit' | 'deposit-options';
|
|
796
796
|
interface MobileFlowState {
|
|
797
797
|
deeplinkUri: string;
|
|
798
798
|
providerId: string | null;
|
|
@@ -818,6 +818,8 @@ type PaymentPhase = {
|
|
|
818
818
|
step: 'manual-transfer';
|
|
819
819
|
} | {
|
|
820
820
|
step: 'login';
|
|
821
|
+
} | {
|
|
822
|
+
step: 'welcome-back';
|
|
821
823
|
} | {
|
|
822
824
|
step: 'deposit-options';
|
|
823
825
|
} | {
|
|
@@ -1400,6 +1402,21 @@ interface PaymentState {
|
|
|
1400
1402
|
* when the host later supplies a non-empty amount.
|
|
1401
1403
|
*/
|
|
1402
1404
|
requireAmountEntry: boolean;
|
|
1405
|
+
/**
|
|
1406
|
+
* Latched `true` only when Privy first becomes ready while the user is
|
|
1407
|
+
* already authenticated (a persisted session from a prior visit). Stays
|
|
1408
|
+
* `false` for users who open logged-out and sign in during the session —
|
|
1409
|
+
* the `ready: false → true` transition has already happened by then. Gates
|
|
1410
|
+
* `WelcomeBackScreen` so we only re-greet returning passkey users.
|
|
1411
|
+
*/
|
|
1412
|
+
authenticatedOnOpen: boolean;
|
|
1413
|
+
/**
|
|
1414
|
+
* Set when the user advances off `WelcomeBackScreen` (tapped "Complete setup
|
|
1415
|
+
* & Deposit"). Flips the welcome-back derivation off so the next
|
|
1416
|
+
* `resolvePhase` falls through to `wallet-picker`. Resets on reload by design
|
|
1417
|
+
* — a genuine reopen should re-greet.
|
|
1418
|
+
*/
|
|
1419
|
+
welcomeBackAcknowledged: boolean;
|
|
1403
1420
|
}
|
|
1404
1421
|
interface InitialStateConfig {
|
|
1405
1422
|
depositAmount: number | null;
|
|
@@ -1453,6 +1470,8 @@ interface StepHandlers {
|
|
|
1453
1470
|
onBackFromSubflow: () => void;
|
|
1454
1471
|
onLogin: () => void;
|
|
1455
1472
|
onCancelLogin: () => void;
|
|
1473
|
+
/** Advance a returning user off WelcomeBackScreen toward the wallet picker. */
|
|
1474
|
+
onAcknowledgeWelcomeBack: () => void;
|
|
1456
1475
|
/**
|
|
1457
1476
|
* Update the in-flow amount-entry value (string display). Called by
|
|
1458
1477
|
* DepositScreen entry mode on every keypress / preset tap. The view-model
|
|
@@ -1866,6 +1885,25 @@ interface DepositOptionsScreenProps {
|
|
|
1866
1885
|
*/
|
|
1867
1886
|
declare function DepositOptionsScreen({ onToAddress, onSignInWithBlink, onClose, }: DepositOptionsScreenProps): react_jsx_runtime.JSX.Element;
|
|
1868
1887
|
|
|
1888
|
+
interface WelcomeBackScreenProps {
|
|
1889
|
+
/** Recessed "Send Crypto Manually" row. Navigates to the manual-transfer flow. */
|
|
1890
|
+
onToAddress: () => void;
|
|
1891
|
+
/**
|
|
1892
|
+
* Primary "Complete setup & Deposit" CTA. Advances the returning user to the
|
|
1893
|
+
* wallet picker to link a wallet and continue the deposit flow.
|
|
1894
|
+
*/
|
|
1895
|
+
onComplete: () => void;
|
|
1896
|
+
/** Dismiss the widget. When set, renders a round (X) close button in the top-right. */
|
|
1897
|
+
onClose?: () => void;
|
|
1898
|
+
}
|
|
1899
|
+
/**
|
|
1900
|
+
* Re-greeting screen for returning passkey users who reopen the full-widget
|
|
1901
|
+
* flow with a persisted session but no linked wallet. Mirrors
|
|
1902
|
+
* `DepositOptionsScreen`, but the primary CTA reads "Complete setup & Deposit"
|
|
1903
|
+
* and routes onward to the wallet picker rather than to login.
|
|
1904
|
+
*/
|
|
1905
|
+
declare function WelcomeBackScreen({ onToAddress, onComplete, onClose, }: WelcomeBackScreenProps): react_jsx_runtime.JSX.Element;
|
|
1906
|
+
|
|
1869
1907
|
interface BlinkErrorScreenProps {
|
|
1870
1908
|
/** Heading text shown under the illustration. */
|
|
1871
1909
|
title: string;
|
|
@@ -1955,6 +1993,19 @@ interface WalletPickerScreenProps {
|
|
|
1955
1993
|
}
|
|
1956
1994
|
declare function WalletPickerScreen({ providers, loading, useDeeplink, error, preparedSessionsByProvider, preparingLinks, directLinkCards, onPrepareProvider, onSelectProvider, onSelectWalletConnectWallet, onBack, onLogout, isDesktop, }: WalletPickerScreenProps): react_jsx_runtime.JSX.Element;
|
|
1957
1995
|
|
|
1996
|
+
interface ManualTransferPasskeyScreenProps {
|
|
1997
|
+
onCreatePasskey: () => void;
|
|
1998
|
+
/** "No thanks" / close action — dismisses the modal. */
|
|
1999
|
+
onNoThanks: () => void;
|
|
2000
|
+
/** Delivered amount in USD, rendered as the "$X deposited" title. */
|
|
2001
|
+
amountUsd?: number;
|
|
2002
|
+
loading?: boolean;
|
|
2003
|
+
error?: string | null;
|
|
2004
|
+
onBack?: () => void;
|
|
2005
|
+
onClose?: () => void;
|
|
2006
|
+
}
|
|
2007
|
+
declare function ManualTransferPasskeyScreen({ onCreatePasskey, onNoThanks, amountUsd, loading, error, onBack, onClose, }: ManualTransferPasskeyScreenProps): react_jsx_runtime.JSX.Element;
|
|
2008
|
+
|
|
1958
2009
|
/**
|
|
1959
2010
|
* A single {token, chain} pair the user may pick as the deposit source on
|
|
1960
2011
|
* the Setup / Deposit screens. Previously lived in `SetupScreen.tsx` but is
|
|
@@ -2432,4 +2483,4 @@ declare function clearDebugEntries(): void;
|
|
|
2432
2483
|
*/
|
|
2433
2484
|
declare function useBlinkDebugLog(): DebugEntry[];
|
|
2434
2485
|
|
|
2435
|
-
export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositOptionsScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, appendDebug, api as blinkApi, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useTransferPolling, useTransferSigning };
|
|
2486
|
+
export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositOptionsScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, ManualTransferPasskeyScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, WelcomeBackScreen, appendDebug, api as blinkApi, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useTransferPolling, useTransferSigning };
|