@moonpay/platform-sdk-react-native 0.3.0-next.1 → 0.3.0
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 +32 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -2
- package/dist/index.d.ts +10 -2
- package/dist/index.js +32 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -665,6 +665,36 @@ function MoonPayProvider({
|
|
|
665
665
|
});
|
|
666
666
|
}
|
|
667
667
|
}
|
|
668
|
+
async function resetConnection() {
|
|
669
|
+
const channelId = `reset-${Date.now()}`;
|
|
670
|
+
const url = (0, import_platform_sdk_core.buildFrameUrl)(import_platform_sdk_core.FRAME_PATHS.reset, { sessionToken, channelId }, { frameBaseUrl });
|
|
671
|
+
try {
|
|
672
|
+
const { promise } = createManagedFrame({
|
|
673
|
+
url,
|
|
674
|
+
channelId,
|
|
675
|
+
hidden: true,
|
|
676
|
+
handshakeTimeout: 5e3
|
|
677
|
+
});
|
|
678
|
+
const { handle, slotId } = await promise;
|
|
679
|
+
return new Promise((resolve) => {
|
|
680
|
+
const timeout = setTimeout(() => {
|
|
681
|
+
handle.dispose();
|
|
682
|
+
removeSlot(slotId);
|
|
683
|
+
resolve((0, import_platform_protocol.ok)(void 0));
|
|
684
|
+
}, 5e3);
|
|
685
|
+
handle.onMessage((msg) => {
|
|
686
|
+
if (msg.kind === "complete" || msg.kind === "error") {
|
|
687
|
+
clearTimeout(timeout);
|
|
688
|
+
handle.dispose();
|
|
689
|
+
removeSlot(slotId);
|
|
690
|
+
resolve((0, import_platform_protocol.ok)(void 0));
|
|
691
|
+
}
|
|
692
|
+
});
|
|
693
|
+
});
|
|
694
|
+
} catch {
|
|
695
|
+
return (0, import_platform_protocol.ok)(void 0);
|
|
696
|
+
}
|
|
697
|
+
}
|
|
668
698
|
async function setupChallenge(opts) {
|
|
669
699
|
let url;
|
|
670
700
|
try {
|
|
@@ -771,6 +801,8 @@ function MoonPayProvider({
|
|
|
771
801
|
setupBuy,
|
|
772
802
|
setupBuyButton,
|
|
773
803
|
setupGooglePay,
|
|
804
|
+
deletePaymentMethod: (id) => core.deletePaymentMethod(id),
|
|
805
|
+
resetConnection,
|
|
774
806
|
setupChallenge,
|
|
775
807
|
setupAddCard,
|
|
776
808
|
createIdentity: (body) => core.createIdentity(body),
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts","../src/frame-component.tsx","../src/provider.tsx","../src/webview-transport.ts"],"sourcesContent":["// Re-export commonly used protocol types for convenience\nexport type {\n AddCardEvent,\n ApplePayEvent,\n AuthEvent,\n BuyButtonEvent,\n BuyEvent,\n CardResponse,\n ChallengeCancellation,\n ChallengeCompleteResult,\n ChallengeEvent,\n ConnectEvent,\n Connection,\n ConnectionStatus,\n GetQuoteParams,\n GooglePayEvent,\n PaymentMethodConfig,\n Quote,\n Result,\n StoredPaymentMethod,\n Transaction,\n TransactionWithStages,\n WidgetEvent,\n} from '@moonpay/platform-protocol';\n\nexport {\n MoonPayFrame,\n type MoonPayFrameProps,\n} from './frame-component.js';\nexport {\n type AddCardFrame,\n type ApplePayFrame,\n type AuthFrame,\n type BuyButtonFrame,\n type BuyFrame,\n type ChallengeFrame,\n type ConnectFrame,\n type ConnectOptions,\n type GetConnectionOptions,\n type GooglePayFrame,\n MoonPayProvider,\n type MoonPayProviderProps,\n type RNClient,\n type SetupAddCardOptions,\n type SetupApplePayOptions,\n type SetupAuthOptions,\n type SetupBuyButtonOptions,\n type SetupBuyOptions,\n type SetupChallengeOptions,\n type SetupGooglePayOptions,\n type SetupWidgetOptions,\n useMoonPay,\n type WidgetFrame,\n} from './provider.js';\nexport { WebViewTransport } from './webview-transport.js';\n","import { useEffect, useRef } from 'react';\nimport { View, type ViewStyle } from 'react-native';\nimport WebView, { type WebViewMessageEvent } from 'react-native-webview';\nimport type { WebViewTransport } from './webview-transport.js';\n\nexport interface MoonPayFrameProps {\n /** The transport instance managing this frame's communication. */\n transport: WebViewTransport;\n /** Whether this is a hidden utility frame (zero height). */\n hidden?: boolean;\n /** Optional style overrides for the container view. */\n style?: ViewStyle;\n}\n\n/**\n * Reusable React Native component that renders a MoonPay frame as a WebView.\n * Bridges the WebViewTransport to the actual WebView instance.\n */\nexport function MoonPayFrame({ transport, hidden, style }: MoonPayFrameProps): JSX.Element | null {\n const webViewRef = useRef<WebView>(null);\n\n useEffect(() => {\n transport.attachWebView(webViewRef);\n return () => {\n // Don't dispose — the orchestrator manages lifecycle\n };\n }, [transport]);\n\n const url = transport.url;\n if (!url) return null;\n\n const handleMessage = (event: WebViewMessageEvent) => {\n transport.handleWebViewMessage(event.nativeEvent.data);\n };\n\n const containerStyle: ViewStyle = hidden\n ? { width: 0, height: 0, overflow: 'hidden' }\n : { flex: 1, ...style };\n\n return (\n <View style={containerStyle}>\n <WebView\n ref={webViewRef}\n source={{ uri: url }}\n onMessage={handleMessage}\n allowsInlineMediaPlayback\n javaScriptEnabled\n domStorageEnabled\n style={{ flex: 1 }}\n />\n </View>\n );\n}\n","import {\n type AddCardEvent,\n type ApplePayEvent,\n type AuthEvent,\n type BuyButtonEvent,\n type BuyEvent,\n type CardResponse,\n type ChallengeCancellation,\n type ChallengeCompleteResult,\n type ChallengeEvent,\n type ConnectError,\n type ConnectEvent,\n type Connection,\n ConnectionStatus,\n type CreateIdentityError,\n type CreateIdentityRequestBody,\n err,\n type GetConnectionError,\n type GetIdentityError,\n type GetIdentityUploadUrlError,\n type GetPaymentMethodsError,\n type GetQuoteError,\n type GetQuoteParams,\n type GetTransactionsError,\n type GooglePayEvent,\n type GooglePayInboundMessageMap,\n type Identity,\n type IdentityFileUploadUrl,\n type IdentityFileUploadUrlRequestBody,\n type IdentityVerificationResponse,\n type ListPaymentMethodsResponse,\n ok,\n type PaginationInfo,\n type ProtocolMessage,\n type Quote,\n type Result,\n type SetupAddCardError,\n type SetupApplePayError,\n type SetupAuthError,\n type SetupBuyButtonError,\n type SetupBuyError,\n type SetupChallengeError,\n type SetupGooglePayError,\n type SetupWidgetError,\n type SubmitIdentityFilesError,\n type SubmitIdentityFilesRequestBody,\n type Transaction,\n type TransactionWithStages,\n type UpdateIdentityError,\n type UpdateIdentityRequestBody,\n type VerifyIdentityError,\n type WidgetEvent,\n} from '@moonpay/platform-protocol';\nimport {\n buildFrameUrl,\n type CoreClient,\n createClientCore,\n createFrameOrchestrator,\n decryptCredentials,\n FRAME_PATHS,\n type FrameHandle,\n generateKeyPair,\n type ListTransactionsParams,\n} from '@moonpay/platform-sdk-core';\nimport {\n createContext,\n type ReactNode,\n useCallback,\n useContext,\n useMemo,\n useRef,\n useState,\n} from 'react';\nimport { MoonPayFrame } from './frame-component.js';\nimport { WebViewTransport } from './webview-transport.js';\n\n// ---------------------------------------------------------------------------\n// Frame slot — represents a frame the provider needs to render\n// ---------------------------------------------------------------------------\n\ninterface FrameSlot {\n id: string;\n transport: WebViewTransport;\n hidden: boolean;\n}\n\n// ---------------------------------------------------------------------------\n// Public types\n// ---------------------------------------------------------------------------\n\nexport interface GetConnectionOptions {\n /**\n * Pass `true` for headless / Identity-API integrations so the check\n * frame opts out of KYC-based statuses. Legal (`termsAcceptanceRequired`)\n * is always surfaced regardless. Defaults to `false`.\n */\n skipKyc?: boolean;\n}\n\nexport interface ConnectOptions {\n /** Theme options for the connect frame. */\n theme?: { appearance?: 'light' | 'dark' };\n /** Callback for connect lifecycle events. */\n onEvent?: (event: ConnectEvent) => void;\n}\n\nexport interface ConnectFrame {\n dispose(): void;\n}\n\nexport interface SetupWidgetOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Callback for widget lifecycle events. */\n onEvent?: (event: WidgetEvent) => void;\n}\n\nexport interface WidgetFrame {\n dispose(): void;\n}\n\nexport interface SetupApplePayOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Callback for Apple Pay lifecycle events. */\n onEvent?: (event: ApplePayEvent) => void;\n}\n\nexport interface ApplePayFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupBuyOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Partner-assigned identifier for this transaction attempt. */\n externalTransactionId?: string;\n /** Callback for buy frame lifecycle events. */\n onEvent?: (event: BuyEvent) => void;\n}\n\nexport interface BuyFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupBuyButtonOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Callback for buy-button frame lifecycle events. */\n onEvent?: (event: BuyButtonEvent) => void;\n}\n\nexport interface BuyButtonFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupGooglePayOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Partner-assigned identifier for this transaction attempt. */\n externalTransactionId?: string;\n /** Callback for Google Pay lifecycle events. */\n onEvent?: (event: GooglePayEvent) => void;\n}\n\nexport interface GooglePayFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupChallengeOptions {\n /** Full challenge URL received from a frame's `challenge` event. */\n url: string;\n /** Callback for challenge frame lifecycle events. */\n onEvent?: (event: ChallengeEvent) => void;\n}\n\nexport interface ChallengeFrame {\n dispose(): void;\n}\n\nexport interface SetupAddCardOptions {\n /** Callback for add-card frame lifecycle events. */\n onEvent?: (event: AddCardEvent) => void;\n}\n\nexport interface AddCardFrame {\n dispose(): void;\n}\n\nexport interface SetupAuthOptions {\n /** Callback for auth frame lifecycle events. */\n onEvent?: (event: AuthEvent) => void;\n}\n\nexport interface AuthFrame {\n dispose(): void;\n}\n\nexport interface RNClient {\n getConnection(options?: GetConnectionOptions): Promise<Result<Connection, GetConnectionError>>;\n connect(options: ConnectOptions): Promise<Result<ConnectFrame, ConnectError>>;\n /**\n * Launch the auth frame — the lighter-weight counterpart to `connect()`\n * for headless / Identity-API partners. Requires a `clientToken` to be\n * present in the client's context, which is populated automatically by a\n * prior `getConnection()` call that returned `connectionRequired`.\n * Call `getConnection()` first; if its status is `connectionRequired`,\n * call `setupAuth()` to drive the customer through email/OTP.\n */\n setupAuth(options: SetupAuthOptions): Promise<Result<AuthFrame, SetupAuthError>>;\n getPaymentMethods(): Promise<Result<ListPaymentMethodsResponse, GetPaymentMethodsError>>;\n getQuote(params: GetQuoteParams): Promise<Result<{ data: Quote }, GetQuoteError>>;\n listTransactions(\n params?: ListTransactionsParams,\n ): Promise<Result<{ data: Transaction[]; pageInfo: PaginationInfo }, GetTransactionsError>>;\n getTransaction(\n id: string,\n ): Promise<Result<{ data: TransactionWithStages }, GetTransactionsError>>;\n setupWidget(options: SetupWidgetOptions): Promise<Result<WidgetFrame, SetupWidgetError>>;\n setupApplePay(options: SetupApplePayOptions): Promise<Result<ApplePayFrame, SetupApplePayError>>;\n setupBuy(options: SetupBuyOptions): Promise<Result<BuyFrame, SetupBuyError>>;\n setupBuyButton(\n options: SetupBuyButtonOptions,\n ): Promise<Result<BuyButtonFrame, SetupBuyButtonError>>;\n setupGooglePay(\n options: SetupGooglePayOptions,\n ): Promise<Result<GooglePayFrame, SetupGooglePayError>>;\n setupChallenge(\n options: SetupChallengeOptions,\n ): Promise<Result<ChallengeFrame, SetupChallengeError>>;\n setupAddCard(options: SetupAddCardOptions): Promise<Result<AddCardFrame, SetupAddCardError>>;\n\n // Identity API\n createIdentity(\n body: CreateIdentityRequestBody,\n ): Promise<Result<{ data: Identity | null }, CreateIdentityError>>;\n getIdentity(id: string): Promise<Result<{ data: Identity }, GetIdentityError>>;\n updateIdentity(\n id: string,\n body: UpdateIdentityRequestBody,\n ): Promise<Result<{ data: Identity }, UpdateIdentityError>>;\n verifyIdentity(\n id: string,\n ): Promise<Result<{ data: IdentityVerificationResponse }, VerifyIdentityError>>;\n getIdentityUploadUrl(\n id: string,\n body: IdentityFileUploadUrlRequestBody,\n ): Promise<Result<{ data: IdentityFileUploadUrl }, GetIdentityUploadUrlError>>;\n submitIdentityFiles(\n id: string,\n body: SubmitIdentityFilesRequestBody,\n ): Promise<Result<{ data: Identity }, SubmitIdentityFilesError>>;\n}\n\n// ---------------------------------------------------------------------------\n// Context\n// ---------------------------------------------------------------------------\n\ninterface MoonPayContextValue {\n client: RNClient;\n}\n\nconst MoonPayContext = createContext<MoonPayContextValue | null>(null);\n\n// ---------------------------------------------------------------------------\n// Provider\n// ---------------------------------------------------------------------------\n\nexport interface MoonPayProviderProps {\n sessionToken: string;\n apiBaseUrl?: string;\n frameBaseUrl?: string;\n children: ReactNode;\n}\n\nlet slotCounter = 0;\n\nexport function MoonPayProvider({\n sessionToken,\n apiBaseUrl,\n frameBaseUrl,\n children,\n}: MoonPayProviderProps): JSX.Element {\n const [frameSlots, setFrameSlots] = useState<FrameSlot[]>([]);\n\n // Stable refs for addSlot/removeSlot so client methods don't re-create\n const addSlot = useCallback((slot: FrameSlot) => {\n setFrameSlots((prev) => [...prev, slot]);\n }, []);\n\n const removeSlot = useCallback((id: string) => {\n setFrameSlots((prev) => prev.filter((s) => s.id !== id));\n }, []);\n\n // Keep a ref to core so it's stable across renders\n const coreRef = useRef<CoreClient | null>(null);\n if (!coreRef.current) {\n coreRef.current = createClientCore({\n apiBaseUrl,\n frameBaseUrl,\n createTransport: () => new WebViewTransport(),\n });\n }\n const core = coreRef.current;\n\n const client = useMemo<RNClient>(() => {\n // Helper: create a transport + slot, wait for orchestrator handshake\n function createManagedFrame(opts: {\n url: string;\n channelId: string;\n hidden: boolean;\n handshakeTimeout?: number;\n }): { promise: Promise<{ handle: FrameHandle; slotId: string }>; transport: WebViewTransport } {\n const transport = new WebViewTransport();\n const slotId = `slot-${++slotCounter}`;\n\n const promise = new Promise<{ handle: FrameHandle; slotId: string }>((resolve, reject) => {\n // Defer adding the slot to allow the transport to be fully set up\n // before the WebView renders\n transport.create(opts.url, { container: null, hidden: opts.hidden });\n\n addSlot({ id: slotId, transport, hidden: opts.hidden });\n\n createFrameOrchestrator({\n transport,\n channelId: opts.channelId,\n url: opts.url,\n container: null,\n hidden: opts.hidden,\n handshakeTimeout: opts.handshakeTimeout ?? 15_000,\n })\n .then((handle) => resolve({ handle, slotId }))\n .catch((e) => {\n removeSlot(slotId);\n reject(e);\n });\n });\n\n return { promise, transport };\n }\n\n // ------- getConnection (hidden frame) -------\n async function getConnection(\n options: GetConnectionOptions = {},\n ): Promise<Result<Connection, GetConnectionError>> {\n const { privateKey, publicKey } = generateKeyPair();\n const channelId = `check-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.checkConnection,\n {\n sessionToken,\n channelId,\n publicKey,\n ...(options.skipKyc && { skipKyc: true }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({\n url,\n channelId,\n hidden: true,\n handshakeTimeout: 10_000,\n });\n\n const { handle, slotId } = await promise;\n\n return new Promise<Result<Connection, GetConnectionError>>((resolve) => {\n const timeout = setTimeout(() => {\n handle.dispose();\n removeSlot(slotId);\n resolve(err({ message: 'Get connection timed out' }));\n }, 10_000);\n\n handle.onMessage((msg: ProtocolMessage) => {\n if (msg.kind === 'error') {\n clearTimeout(timeout);\n handle.dispose();\n removeSlot(slotId);\n const payload = msg.payload as { message: string };\n resolve(err({ message: payload.message }));\n return;\n }\n\n if (msg.kind === 'complete') {\n clearTimeout(timeout);\n handle.dispose();\n removeSlot(slotId);\n const connection = msg.payload as Connection;\n\n if (connection.status === ConnectionStatus.active) {\n const creds = decryptCredentials(connection.credentials, privateKey);\n core.context.setAccessToken(creds.accessToken);\n core.context.setClientToken(creds.clientToken);\n }\n\n resolve(ok(connection));\n }\n });\n });\n } catch (e) {\n return err({\n message: e instanceof Error ? e.message : 'Failed to check connection',\n });\n }\n }\n\n // ------- connect (visible frame) -------\n async function connect(opts: ConnectOptions): Promise<Result<ConnectFrame, ConnectError>> {\n const { privateKey, publicKey } = generateKeyPair();\n const channelId = `connect-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.connect,\n {\n sessionToken,\n channelId,\n publicKey,\n ...(opts.theme?.appearance && { appearance: opts.theme.appearance }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n return new Promise<Result<ConnectFrame, ConnectError>>((resolve) => {\n handle.onMessage((msg: ProtocolMessage) => {\n if (msg.kind === 'ready') {\n opts.onEvent?.({ kind: 'ready' });\n return;\n }\n\n if (msg.kind === 'error') {\n const payload = msg.payload as import('@moonpay/platform-protocol').ConnectionError;\n opts.onEvent?.({ kind: 'error', payload });\n handle.dispose();\n removeSlot(slotId);\n resolve(err({ message: 'Connection error' }));\n return;\n }\n\n if (msg.kind === 'complete') {\n const connection = msg.payload as Connection;\n\n if (connection.status === ConnectionStatus.active) {\n const creds = decryptCredentials(connection.credentials, privateKey);\n core.context.setAccessToken(creds.accessToken);\n core.context.setClientToken(creds.clientToken);\n }\n\n opts.onEvent?.({ kind: 'complete', payload: connection });\n resolve(\n ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n }),\n );\n }\n });\n });\n } catch (e) {\n return err({\n message: e instanceof Error ? e.message : 'Connect failed',\n });\n }\n }\n\n // ------- setupAuth (visible frame) -------\n async function setupAuth(opts: SetupAuthOptions): Promise<Result<AuthFrame, SetupAuthError>> {\n const clientToken = core.context.clientToken;\n if (!clientToken) {\n return err({\n kind: 'configurationError',\n message:\n 'No clientToken in context — call getConnection() first and ensure it resolved with status \"connectionRequired\".',\n });\n }\n\n const { privateKey, publicKey } = generateKeyPair();\n const channelId = `auth-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.auth,\n { clientToken, channelId, publicKey },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n return new Promise<Result<AuthFrame, SetupAuthError>>((resolve) => {\n handle.onMessage((msg: ProtocolMessage) => {\n if (msg.kind === 'ready') {\n opts.onEvent?.({ kind: 'ready' });\n return;\n }\n\n if (msg.kind === 'error') {\n const payload = msg.payload as import('@moonpay/platform-protocol').ConnectionError;\n opts.onEvent?.({ kind: 'error', payload });\n handle.dispose();\n removeSlot(slotId);\n resolve(err({ kind: 'genericError', message: 'Auth frame error' }));\n return;\n }\n\n if (msg.kind === 'complete') {\n const connection = msg.payload as Connection;\n\n if (connection.status === ConnectionStatus.active) {\n const creds = decryptCredentials(connection.credentials, privateKey);\n core.context.setAccessToken(creds.accessToken);\n core.context.setClientToken(creds.clientToken);\n }\n\n if (\n connection.status === ConnectionStatus.active ||\n connection.status === ConnectionStatus.termsAcceptanceRequired\n ) {\n opts.onEvent?.({ kind: 'complete', payload: connection });\n }\n resolve(\n ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n }),\n );\n }\n });\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Auth setup failed',\n });\n }\n }\n\n // ------- setupWidget -------\n async function setupWidget(\n opts: SetupWidgetOptions,\n ): Promise<Result<WidgetFrame, SetupWidgetError>> {\n const channelId = `widget-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.widget,\n {\n flow: 'buy',\n clientToken: core.context.clientToken,\n quoteSignature: opts.quote,\n channelId,\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'transactionCreated':\n opts.onEvent?.({\n kind: 'transactionCreated',\n payload: msg.payload as { transaction: { id: string; status: string } },\n });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'error': {\n const payload = msg.payload as {\n code: 'configurationError' | 'apiError' | 'generic';\n message: string;\n };\n opts.onEvent?.({\n kind: 'error',\n payload: { code: payload.code, message: payload.message },\n });\n break;\n }\n case 'close':\n opts.onEvent?.({ kind: 'close' });\n break;\n }\n });\n\n return ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Widget setup failed',\n });\n }\n }\n\n // ------- setupApplePay -------\n async function setupApplePay(\n opts: SetupApplePayOptions,\n ): Promise<Result<ApplePayFrame, SetupApplePayError>> {\n const channelId = `applepay-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.applePay,\n {\n clientToken: core.context.clientToken,\n signature: opts.quote,\n channelId,\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'error': {\n const payload = msg.payload as { code: string; message: string };\n if (payload.code === 'quoteExpired') {\n opts.onEvent?.({ kind: 'quoteExpired', payload: { setQuote } });\n } else if (payload.code === 'applePayUnavailable') {\n opts.onEvent?.({ kind: 'unsupported' });\n } else {\n const kind =\n payload.code === 'generic'\n ? 'genericError'\n : (payload.code as\n | 'configurationError'\n | 'invalidQuote'\n | 'oneTapApplePaySecondFactorRequired'\n | 'genericError');\n opts.onEvent?.({\n kind: 'error',\n payload: { kind, message: payload.message },\n });\n }\n break;\n }\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Apple Pay setup failed',\n });\n }\n }\n\n // ------- setupBuy (hidden frame) -------\n async function setupBuy(opts: SetupBuyOptions): Promise<Result<BuyFrame, SetupBuyError>> {\n const channelId = `buy-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.buy,\n {\n channelId,\n clientToken: core.context.clientToken,\n signature: opts.quote,\n ...(opts.externalTransactionId && { externalTransactionId: opts.externalTransactionId }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: true });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'challenge':\n opts.onEvent?.({\n kind: 'challenge',\n payload: msg.payload as { kind: string; url: string },\n });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as { code: string; message: string },\n });\n break;\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Buy setup failed',\n });\n }\n }\n\n // ------- setupBuyButton -------\n async function setupBuyButton(\n opts: SetupBuyButtonOptions,\n ): Promise<Result<BuyButtonFrame, SetupBuyButtonError>> {\n const channelId = `buy-button-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.buyButton,\n {\n channelId,\n clientToken: core.context.clientToken,\n signature: opts.quote,\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'challenge':\n opts.onEvent?.({\n kind: 'challenge',\n payload: msg.payload as { kind: string; url: string },\n });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as { code: string; message: string },\n });\n break;\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Buy button setup failed',\n });\n }\n }\n\n // ------- setupGooglePay -------\n async function setupGooglePay(\n opts: SetupGooglePayOptions,\n ): Promise<Result<GooglePayFrame, SetupGooglePayError>> {\n const channelId = `googlepay-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.googlePay,\n {\n clientToken: core.context.clientToken,\n signature: opts.quote,\n channelId,\n ...(opts.externalTransactionId && { externalTransactionId: opts.externalTransactionId }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'challenge':\n opts.onEvent?.({\n kind: 'challenge',\n payload: msg.payload as GooglePayInboundMessageMap['challenge'],\n });\n break;\n case 'error': {\n const payload = msg.payload as { code: string; message: string };\n if (payload.code === 'quoteExpired') {\n opts.onEvent?.({ kind: 'quoteExpired', payload: { setQuote } });\n } else if (payload.code === 'googlePayUnavailable') {\n opts.onEvent?.({ kind: 'unsupported' });\n } else {\n const kind =\n payload.code === 'generic'\n ? 'genericError'\n : (payload.code as 'configurationError' | 'invalidQuote' | 'genericError');\n opts.onEvent?.({\n kind: 'error',\n payload: { kind, message: payload.message },\n });\n }\n break;\n }\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Google Pay setup failed',\n });\n }\n }\n\n // ------- setupChallenge -------\n async function setupChallenge(\n opts: SetupChallengeOptions,\n ): Promise<Result<ChallengeFrame, SetupChallengeError>> {\n let url: URL;\n try {\n url = new URL(opts.url);\n } catch {\n return err({ kind: 'configurationError', message: 'Invalid challenge URL' });\n }\n\n let channelId = url.searchParams.get('channelId') ?? '';\n if (!channelId) {\n channelId = `challenge-${Date.now()}`;\n url.searchParams.set('channelId', channelId);\n }\n\n try {\n const { promise } = createManagedFrame({\n url: url.toString(),\n channelId,\n hidden: false,\n });\n const { handle, slotId } = await promise;\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as ChallengeCompleteResult,\n });\n break;\n case 'cancelled':\n opts.onEvent?.({\n kind: 'cancelled',\n payload: msg.payload as ChallengeCancellation,\n });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as { code: string; message: string },\n });\n break;\n }\n });\n\n return ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Challenge setup failed',\n });\n }\n }\n\n // ------- setupAddCard -------\n async function setupAddCard(\n opts: SetupAddCardOptions,\n ): Promise<Result<AddCardFrame, SetupAddCardError>> {\n const channelId = `add-card-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.addCard,\n { channelId, clientToken: core.context.clientToken },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'complete':\n opts.onEvent?.({ kind: 'complete', payload: msg.payload as { card: CardResponse } });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as {\n code: 'generic' | 'configurationError';\n message: string;\n },\n });\n break;\n }\n });\n\n return ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Add card setup failed',\n });\n }\n }\n\n return {\n getConnection,\n connect,\n setupAuth,\n getPaymentMethods: () => core.getPaymentMethods(),\n getQuote: (params) => core.getQuote(params),\n listTransactions: (params) => core.listTransactions(params),\n getTransaction: (id) => core.getTransaction(id),\n setupWidget,\n setupApplePay,\n setupBuy,\n setupBuyButton,\n setupGooglePay,\n setupChallenge,\n setupAddCard,\n\n createIdentity: (body) => core.createIdentity(body),\n getIdentity: (id) => core.getIdentity(id),\n updateIdentity: (id, body) => core.updateIdentity(id, body),\n verifyIdentity: (id) => core.verifyIdentity(id),\n getIdentityUploadUrl: (id, body) => core.getIdentityUploadUrl(id, body),\n submitIdentityFiles: (id, body) => core.submitIdentityFiles(id, body),\n };\n }, [sessionToken, frameBaseUrl, core, addSlot, removeSlot]);\n\n return (\n <MoonPayContext.Provider value={{ client }}>\n {children}\n {frameSlots.map((slot) => (\n <MoonPayFrame key={slot.id} transport={slot.transport} hidden={slot.hidden} />\n ))}\n </MoonPayContext.Provider>\n );\n}\n\n// ---------------------------------------------------------------------------\n// Hook\n// ---------------------------------------------------------------------------\n\nexport function useMoonPay(): MoonPayContextValue {\n const ctx = useContext(MoonPayContext);\n if (!ctx) {\n throw new Error('useMoonPay must be used within a <MoonPayProvider>');\n }\n return ctx;\n}\n","import type { ProtocolMessage } from '@moonpay/platform-protocol';\nimport type { FrameOptions, FrameTransport } from '@moonpay/platform-sdk-core';\nimport type { RefObject } from 'react';\nimport type WebView from 'react-native-webview';\n\n/**\n * FrameTransport implementation for React Native using react-native-webview.\n *\n * Unlike the web IframeTransport, the WebView is rendered declaratively via\n * React components. This transport bridges the imperative FrameTransport\n * interface to a WebView ref.\n */\nexport class WebViewTransport implements FrameTransport {\n private webViewRef: RefObject<WebView | null> | null = null;\n private handlers: Array<(msg: ProtocolMessage) => void> = [];\n private _url: string = '';\n private _options: FrameOptions | null = null;\n\n /** Called by the frame component when it mounts the WebView. */\n attachWebView(ref: RefObject<WebView | null>): void {\n this.webViewRef = ref;\n }\n\n /** Called by the WebView's onMessage prop to route incoming messages. */\n handleWebViewMessage(data: string): void {\n try {\n const msg: ProtocolMessage = JSON.parse(data);\n if (!msg.kind) return;\n for (const handler of this.handlers) {\n handler(msg);\n }\n } catch {\n // Ignore non-protocol messages\n }\n }\n\n get url(): string {\n return this._url;\n }\n\n get options(): FrameOptions | null {\n return this._options;\n }\n\n // FrameTransport interface\n\n create(url: string, options: FrameOptions): void {\n this._url = url;\n this._options = options;\n // The actual WebView rendering is handled by React components.\n // This method stores the URL and options for the component to read.\n }\n\n sendMessage(message: ProtocolMessage): void {\n if (!this.webViewRef?.current) {\n throw new Error('Cannot send message: WebView not attached');\n }\n const js = `\n window.postMessage(${JSON.stringify(JSON.stringify(message))}, '*');\n true;\n `;\n this.webViewRef.current.injectJavaScript(js);\n }\n\n onMessage(handler: (msg: ProtocolMessage) => void): () => void {\n this.handlers.push(handler);\n return () => {\n const idx = this.handlers.indexOf(handler);\n if (idx >= 0) this.handlers.splice(idx, 1);\n };\n }\n\n dispose(): void {\n this.handlers.length = 0;\n this.webViewRef = null;\n this._url = '';\n this._options = null;\n }\n}\n"],"mappings":"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","names":["WebView","import_react","import_jsx_runtime"]}
|
|
1
|
+
{"version":3,"sources":["../src/index.ts","../src/frame-component.tsx","../src/provider.tsx","../src/webview-transport.ts"],"sourcesContent":["// Re-export commonly used protocol types for convenience\nexport type {\n AddCardEvent,\n ApplePayEvent,\n AuthEvent,\n BuyButtonEvent,\n BuyEvent,\n CardResponse,\n ChallengeCancellation,\n ChallengeCompleteResult,\n ChallengeEvent,\n ConnectEvent,\n Connection,\n ConnectionStatus,\n GetQuoteParams,\n GooglePayEvent,\n PaymentMethodConfig,\n PaymentMethodType,\n Quote,\n Result,\n StoredCardPaymentMethod,\n StoredPaymentMethod,\n Transaction,\n TransactionWithStages,\n WidgetEvent,\n} from '@moonpay/platform-protocol';\n\nexport {\n MoonPayFrame,\n type MoonPayFrameProps,\n} from './frame-component.js';\nexport {\n type AddCardFrame,\n type ApplePayFrame,\n type AuthFrame,\n type BuyButtonFrame,\n type BuyFrame,\n type ChallengeFrame,\n type ConnectFrame,\n type ConnectOptions,\n type GetConnectionOptions,\n type GooglePayFrame,\n MoonPayProvider,\n type MoonPayProviderProps,\n type RNClient,\n type SetupAddCardOptions,\n type SetupApplePayOptions,\n type SetupAuthOptions,\n type SetupBuyButtonOptions,\n type SetupBuyOptions,\n type SetupChallengeOptions,\n type SetupGooglePayOptions,\n type SetupWidgetOptions,\n useMoonPay,\n type WidgetFrame,\n} from './provider.js';\nexport { WebViewTransport } from './webview-transport.js';\n","import { useEffect, useRef } from 'react';\nimport { View, type ViewStyle } from 'react-native';\nimport WebView, { type WebViewMessageEvent } from 'react-native-webview';\nimport type { WebViewTransport } from './webview-transport.js';\n\nexport interface MoonPayFrameProps {\n /** The transport instance managing this frame's communication. */\n transport: WebViewTransport;\n /** Whether this is a hidden utility frame (zero height). */\n hidden?: boolean;\n /** Optional style overrides for the container view. */\n style?: ViewStyle;\n}\n\n/**\n * Reusable React Native component that renders a MoonPay frame as a WebView.\n * Bridges the WebViewTransport to the actual WebView instance.\n */\nexport function MoonPayFrame({ transport, hidden, style }: MoonPayFrameProps): JSX.Element | null {\n const webViewRef = useRef<WebView>(null);\n\n useEffect(() => {\n transport.attachWebView(webViewRef);\n return () => {\n // Don't dispose — the orchestrator manages lifecycle\n };\n }, [transport]);\n\n const url = transport.url;\n if (!url) return null;\n\n const handleMessage = (event: WebViewMessageEvent) => {\n transport.handleWebViewMessage(event.nativeEvent.data);\n };\n\n const containerStyle: ViewStyle = hidden\n ? { width: 0, height: 0, overflow: 'hidden' }\n : { flex: 1, ...style };\n\n return (\n <View style={containerStyle}>\n <WebView\n ref={webViewRef}\n source={{ uri: url }}\n onMessage={handleMessage}\n allowsInlineMediaPlayback\n javaScriptEnabled\n domStorageEnabled\n style={{ flex: 1 }}\n />\n </View>\n );\n}\n","import {\n type AddCardEvent,\n type ApplePayEvent,\n type AuthEvent,\n type BuyButtonEvent,\n type BuyEvent,\n type CardResponse,\n type ChallengeCancellation,\n type ChallengeCompleteResult,\n type ChallengeEvent,\n type ConnectError,\n type ConnectEvent,\n type Connection,\n ConnectionStatus,\n type CreateIdentityError,\n type CreateIdentityRequestBody,\n type DevPlatformApiError,\n err,\n type GetConnectionError,\n type GetIdentityError,\n type GetIdentityUploadUrlError,\n type GetPaymentMethodsError,\n type GetQuoteError,\n type GetQuoteParams,\n type GetTransactionsError,\n type GooglePayEvent,\n type GooglePayInboundMessageMap,\n type Identity,\n type IdentityFileUploadUrl,\n type IdentityFileUploadUrlRequestBody,\n type IdentityVerificationResponse,\n type ListPaymentMethodsResponse,\n ok,\n type PaginationInfo,\n type ProtocolMessage,\n type Quote,\n type ResetConnectionError,\n type Result,\n type SetupAddCardError,\n type SetupApplePayError,\n type SetupAuthError,\n type SetupBuyButtonError,\n type SetupBuyError,\n type SetupChallengeError,\n type SetupGooglePayError,\n type SetupWidgetError,\n type SubmitIdentityFilesError,\n type SubmitIdentityFilesRequestBody,\n type Transaction,\n type TransactionWithStages,\n type UpdateIdentityError,\n type UpdateIdentityRequestBody,\n type VerifyIdentityError,\n type WidgetEvent,\n} from '@moonpay/platform-protocol';\nimport {\n buildFrameUrl,\n type CoreClient,\n createClientCore,\n createFrameOrchestrator,\n decryptCredentials,\n FRAME_PATHS,\n type FrameHandle,\n generateKeyPair,\n type ListTransactionsParams,\n} from '@moonpay/platform-sdk-core';\nimport {\n createContext,\n type ReactNode,\n useCallback,\n useContext,\n useMemo,\n useRef,\n useState,\n} from 'react';\nimport { MoonPayFrame } from './frame-component.js';\nimport { WebViewTransport } from './webview-transport.js';\n\n// ---------------------------------------------------------------------------\n// Frame slot — represents a frame the provider needs to render\n// ---------------------------------------------------------------------------\n\ninterface FrameSlot {\n id: string;\n transport: WebViewTransport;\n hidden: boolean;\n}\n\n// ---------------------------------------------------------------------------\n// Public types\n// ---------------------------------------------------------------------------\n\nexport interface GetConnectionOptions {\n /**\n * Pass `true` for headless / Identity-API integrations so the check\n * frame opts out of KYC-based statuses. Legal (`termsAcceptanceRequired`)\n * is always surfaced regardless. Defaults to `false`.\n */\n skipKyc?: boolean;\n}\n\nexport interface ConnectOptions {\n /** Theme options for the connect frame. */\n theme?: { appearance?: 'light' | 'dark' };\n /** Callback for connect lifecycle events. */\n onEvent?: (event: ConnectEvent) => void;\n}\n\nexport interface ConnectFrame {\n dispose(): void;\n}\n\nexport interface SetupWidgetOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Callback for widget lifecycle events. */\n onEvent?: (event: WidgetEvent) => void;\n}\n\nexport interface WidgetFrame {\n dispose(): void;\n}\n\nexport interface SetupApplePayOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Callback for Apple Pay lifecycle events. */\n onEvent?: (event: ApplePayEvent) => void;\n}\n\nexport interface ApplePayFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupBuyOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Partner-assigned identifier for this transaction attempt. */\n externalTransactionId?: string;\n /** Callback for buy frame lifecycle events. */\n onEvent?: (event: BuyEvent) => void;\n}\n\nexport interface BuyFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupBuyButtonOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Callback for buy-button frame lifecycle events. */\n onEvent?: (event: BuyButtonEvent) => void;\n}\n\nexport interface BuyButtonFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupGooglePayOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Partner-assigned identifier for this transaction attempt. */\n externalTransactionId?: string;\n /** Callback for Google Pay lifecycle events. */\n onEvent?: (event: GooglePayEvent) => void;\n}\n\nexport interface GooglePayFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupChallengeOptions {\n /** Full challenge URL received from a frame's `challenge` event. */\n url: string;\n /** Callback for challenge frame lifecycle events. */\n onEvent?: (event: ChallengeEvent) => void;\n}\n\nexport interface ChallengeFrame {\n dispose(): void;\n}\n\nexport interface SetupAddCardOptions {\n /** Callback for add-card frame lifecycle events. */\n onEvent?: (event: AddCardEvent) => void;\n}\n\nexport interface AddCardFrame {\n dispose(): void;\n}\n\nexport interface SetupAuthOptions {\n /** Callback for auth frame lifecycle events. */\n onEvent?: (event: AuthEvent) => void;\n}\n\nexport interface AuthFrame {\n dispose(): void;\n}\n\nexport interface RNClient {\n getConnection(options?: GetConnectionOptions): Promise<Result<Connection, GetConnectionError>>;\n connect(options: ConnectOptions): Promise<Result<ConnectFrame, ConnectError>>;\n /**\n * Launch the auth frame — the lighter-weight counterpart to `connect()`\n * for headless / Identity-API partners. Requires a `clientToken` to be\n * present in the client's context, which is populated automatically by a\n * prior `getConnection()` call that returned `connectionRequired`.\n * Call `getConnection()` first; if its status is `connectionRequired`,\n * call `setupAuth()` to drive the customer through email/OTP.\n */\n setupAuth(options: SetupAuthOptions): Promise<Result<AuthFrame, SetupAuthError>>;\n getPaymentMethods(): Promise<Result<ListPaymentMethodsResponse, GetPaymentMethodsError>>;\n getQuote(params: GetQuoteParams): Promise<Result<{ data: Quote }, GetQuoteError>>;\n listTransactions(\n params?: ListTransactionsParams,\n ): Promise<Result<{ data: Transaction[]; pageInfo: PaginationInfo }, GetTransactionsError>>;\n getTransaction(\n id: string,\n ): Promise<Result<{ data: TransactionWithStages }, GetTransactionsError>>;\n setupWidget(options: SetupWidgetOptions): Promise<Result<WidgetFrame, SetupWidgetError>>;\n setupApplePay(options: SetupApplePayOptions): Promise<Result<ApplePayFrame, SetupApplePayError>>;\n setupBuy(options: SetupBuyOptions): Promise<Result<BuyFrame, SetupBuyError>>;\n setupBuyButton(\n options: SetupBuyButtonOptions,\n ): Promise<Result<BuyButtonFrame, SetupBuyButtonError>>;\n setupGooglePay(\n options: SetupGooglePayOptions,\n ): Promise<Result<GooglePayFrame, SetupGooglePayError>>;\n deletePaymentMethod(id: string): Promise<Result<void, DevPlatformApiError>>;\n /**\n * Clears the customer's MoonPay connection for this partner by running the\n * reset frame. Resolves when the reset completes or times out (5s).\n * Call this after clearing your own local auth state (the client reference\n * can be captured before disposal since the session token is baked in).\n */\n resetConnection(): Promise<Result<void, ResetConnectionError>>;\n setupChallenge(\n options: SetupChallengeOptions,\n ): Promise<Result<ChallengeFrame, SetupChallengeError>>;\n setupAddCard(options: SetupAddCardOptions): Promise<Result<AddCardFrame, SetupAddCardError>>;\n\n // Identity API\n createIdentity(\n body: CreateIdentityRequestBody,\n ): Promise<Result<{ data: Identity | null }, CreateIdentityError>>;\n getIdentity(id: string): Promise<Result<{ data: Identity }, GetIdentityError>>;\n updateIdentity(\n id: string,\n body: UpdateIdentityRequestBody,\n ): Promise<Result<{ data: Identity }, UpdateIdentityError>>;\n verifyIdentity(\n id: string,\n ): Promise<Result<{ data: IdentityVerificationResponse }, VerifyIdentityError>>;\n getIdentityUploadUrl(\n id: string,\n body: IdentityFileUploadUrlRequestBody,\n ): Promise<Result<{ data: IdentityFileUploadUrl }, GetIdentityUploadUrlError>>;\n submitIdentityFiles(\n id: string,\n body: SubmitIdentityFilesRequestBody,\n ): Promise<Result<{ data: Identity }, SubmitIdentityFilesError>>;\n}\n\n// ---------------------------------------------------------------------------\n// Context\n// ---------------------------------------------------------------------------\n\ninterface MoonPayContextValue {\n client: RNClient;\n}\n\nconst MoonPayContext = createContext<MoonPayContextValue | null>(null);\n\n// ---------------------------------------------------------------------------\n// Provider\n// ---------------------------------------------------------------------------\n\nexport interface MoonPayProviderProps {\n sessionToken: string;\n apiBaseUrl?: string;\n frameBaseUrl?: string;\n children: ReactNode;\n}\n\nlet slotCounter = 0;\n\nexport function MoonPayProvider({\n sessionToken,\n apiBaseUrl,\n frameBaseUrl,\n children,\n}: MoonPayProviderProps): JSX.Element {\n const [frameSlots, setFrameSlots] = useState<FrameSlot[]>([]);\n\n // Stable refs for addSlot/removeSlot so client methods don't re-create\n const addSlot = useCallback((slot: FrameSlot) => {\n setFrameSlots((prev) => [...prev, slot]);\n }, []);\n\n const removeSlot = useCallback((id: string) => {\n setFrameSlots((prev) => prev.filter((s) => s.id !== id));\n }, []);\n\n // Keep a ref to core so it's stable across renders\n const coreRef = useRef<CoreClient | null>(null);\n if (!coreRef.current) {\n coreRef.current = createClientCore({\n apiBaseUrl,\n frameBaseUrl,\n createTransport: () => new WebViewTransport(),\n });\n }\n const core = coreRef.current;\n\n const client = useMemo<RNClient>(() => {\n // Helper: create a transport + slot, wait for orchestrator handshake\n function createManagedFrame(opts: {\n url: string;\n channelId: string;\n hidden: boolean;\n handshakeTimeout?: number;\n }): { promise: Promise<{ handle: FrameHandle; slotId: string }>; transport: WebViewTransport } {\n const transport = new WebViewTransport();\n const slotId = `slot-${++slotCounter}`;\n\n const promise = new Promise<{ handle: FrameHandle; slotId: string }>((resolve, reject) => {\n // Defer adding the slot to allow the transport to be fully set up\n // before the WebView renders\n transport.create(opts.url, { container: null, hidden: opts.hidden });\n\n addSlot({ id: slotId, transport, hidden: opts.hidden });\n\n createFrameOrchestrator({\n transport,\n channelId: opts.channelId,\n url: opts.url,\n container: null,\n hidden: opts.hidden,\n handshakeTimeout: opts.handshakeTimeout ?? 15_000,\n })\n .then((handle) => resolve({ handle, slotId }))\n .catch((e) => {\n removeSlot(slotId);\n reject(e);\n });\n });\n\n return { promise, transport };\n }\n\n // ------- getConnection (hidden frame) -------\n async function getConnection(\n options: GetConnectionOptions = {},\n ): Promise<Result<Connection, GetConnectionError>> {\n const { privateKey, publicKey } = generateKeyPair();\n const channelId = `check-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.checkConnection,\n {\n sessionToken,\n channelId,\n publicKey,\n ...(options.skipKyc && { skipKyc: true }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({\n url,\n channelId,\n hidden: true,\n handshakeTimeout: 10_000,\n });\n\n const { handle, slotId } = await promise;\n\n return new Promise<Result<Connection, GetConnectionError>>((resolve) => {\n const timeout = setTimeout(() => {\n handle.dispose();\n removeSlot(slotId);\n resolve(err({ message: 'Get connection timed out' }));\n }, 10_000);\n\n handle.onMessage((msg: ProtocolMessage) => {\n if (msg.kind === 'error') {\n clearTimeout(timeout);\n handle.dispose();\n removeSlot(slotId);\n const payload = msg.payload as { message: string };\n resolve(err({ message: payload.message }));\n return;\n }\n\n if (msg.kind === 'complete') {\n clearTimeout(timeout);\n handle.dispose();\n removeSlot(slotId);\n const connection = msg.payload as Connection;\n\n if (connection.status === ConnectionStatus.active) {\n const creds = decryptCredentials(connection.credentials, privateKey);\n core.context.setAccessToken(creds.accessToken);\n core.context.setClientToken(creds.clientToken);\n }\n\n resolve(ok(connection));\n }\n });\n });\n } catch (e) {\n return err({\n message: e instanceof Error ? e.message : 'Failed to check connection',\n });\n }\n }\n\n // ------- connect (visible frame) -------\n async function connect(opts: ConnectOptions): Promise<Result<ConnectFrame, ConnectError>> {\n const { privateKey, publicKey } = generateKeyPair();\n const channelId = `connect-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.connect,\n {\n sessionToken,\n channelId,\n publicKey,\n ...(opts.theme?.appearance && { appearance: opts.theme.appearance }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n return new Promise<Result<ConnectFrame, ConnectError>>((resolve) => {\n handle.onMessage((msg: ProtocolMessage) => {\n if (msg.kind === 'ready') {\n opts.onEvent?.({ kind: 'ready' });\n return;\n }\n\n if (msg.kind === 'error') {\n const payload = msg.payload as import('@moonpay/platform-protocol').ConnectionError;\n opts.onEvent?.({ kind: 'error', payload });\n handle.dispose();\n removeSlot(slotId);\n resolve(err({ message: 'Connection error' }));\n return;\n }\n\n if (msg.kind === 'complete') {\n const connection = msg.payload as Connection;\n\n if (connection.status === ConnectionStatus.active) {\n const creds = decryptCredentials(connection.credentials, privateKey);\n core.context.setAccessToken(creds.accessToken);\n core.context.setClientToken(creds.clientToken);\n }\n\n opts.onEvent?.({ kind: 'complete', payload: connection });\n resolve(\n ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n }),\n );\n }\n });\n });\n } catch (e) {\n return err({\n message: e instanceof Error ? e.message : 'Connect failed',\n });\n }\n }\n\n // ------- setupAuth (visible frame) -------\n async function setupAuth(opts: SetupAuthOptions): Promise<Result<AuthFrame, SetupAuthError>> {\n const clientToken = core.context.clientToken;\n if (!clientToken) {\n return err({\n kind: 'configurationError',\n message:\n 'No clientToken in context — call getConnection() first and ensure it resolved with status \"connectionRequired\".',\n });\n }\n\n const { privateKey, publicKey } = generateKeyPair();\n const channelId = `auth-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.auth,\n { clientToken, channelId, publicKey },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n return new Promise<Result<AuthFrame, SetupAuthError>>((resolve) => {\n handle.onMessage((msg: ProtocolMessage) => {\n if (msg.kind === 'ready') {\n opts.onEvent?.({ kind: 'ready' });\n return;\n }\n\n if (msg.kind === 'error') {\n const payload = msg.payload as import('@moonpay/platform-protocol').ConnectionError;\n opts.onEvent?.({ kind: 'error', payload });\n handle.dispose();\n removeSlot(slotId);\n resolve(err({ kind: 'genericError', message: 'Auth frame error' }));\n return;\n }\n\n if (msg.kind === 'complete') {\n const connection = msg.payload as Connection;\n\n if (connection.status === ConnectionStatus.active) {\n const creds = decryptCredentials(connection.credentials, privateKey);\n core.context.setAccessToken(creds.accessToken);\n core.context.setClientToken(creds.clientToken);\n }\n\n if (\n connection.status === ConnectionStatus.active ||\n connection.status === ConnectionStatus.termsAcceptanceRequired\n ) {\n opts.onEvent?.({ kind: 'complete', payload: connection });\n }\n resolve(\n ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n }),\n );\n }\n });\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Auth setup failed',\n });\n }\n }\n\n // ------- setupWidget -------\n async function setupWidget(\n opts: SetupWidgetOptions,\n ): Promise<Result<WidgetFrame, SetupWidgetError>> {\n const channelId = `widget-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.widget,\n {\n flow: 'buy',\n clientToken: core.context.clientToken,\n quoteSignature: opts.quote,\n channelId,\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'transactionCreated':\n opts.onEvent?.({\n kind: 'transactionCreated',\n payload: msg.payload as { transaction: { id: string; status: string } },\n });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'error': {\n const payload = msg.payload as {\n code: 'configurationError' | 'apiError' | 'generic';\n message: string;\n };\n opts.onEvent?.({\n kind: 'error',\n payload: { code: payload.code, message: payload.message },\n });\n break;\n }\n case 'close':\n opts.onEvent?.({ kind: 'close' });\n break;\n }\n });\n\n return ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Widget setup failed',\n });\n }\n }\n\n // ------- setupApplePay -------\n async function setupApplePay(\n opts: SetupApplePayOptions,\n ): Promise<Result<ApplePayFrame, SetupApplePayError>> {\n const channelId = `applepay-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.applePay,\n {\n clientToken: core.context.clientToken,\n signature: opts.quote,\n channelId,\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'error': {\n const payload = msg.payload as { code: string; message: string };\n if (payload.code === 'quoteExpired') {\n opts.onEvent?.({ kind: 'quoteExpired', payload: { setQuote } });\n } else if (payload.code === 'applePayUnavailable') {\n opts.onEvent?.({ kind: 'unsupported' });\n } else {\n const kind =\n payload.code === 'generic'\n ? 'genericError'\n : (payload.code as\n | 'configurationError'\n | 'invalidQuote'\n | 'oneTapApplePaySecondFactorRequired'\n | 'genericError');\n opts.onEvent?.({\n kind: 'error',\n payload: { kind, message: payload.message },\n });\n }\n break;\n }\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Apple Pay setup failed',\n });\n }\n }\n\n // ------- setupBuy (hidden frame) -------\n async function setupBuy(opts: SetupBuyOptions): Promise<Result<BuyFrame, SetupBuyError>> {\n const channelId = `buy-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.buy,\n {\n channelId,\n clientToken: core.context.clientToken,\n signature: opts.quote,\n ...(opts.externalTransactionId && { externalTransactionId: opts.externalTransactionId }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: true });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'challenge':\n opts.onEvent?.({\n kind: 'challenge',\n payload: msg.payload as { kind: string; url: string },\n });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as { code: string; message: string },\n });\n break;\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Buy setup failed',\n });\n }\n }\n\n // ------- setupBuyButton -------\n async function setupBuyButton(\n opts: SetupBuyButtonOptions,\n ): Promise<Result<BuyButtonFrame, SetupBuyButtonError>> {\n const channelId = `buy-button-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.buyButton,\n {\n channelId,\n clientToken: core.context.clientToken,\n signature: opts.quote,\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'challenge':\n opts.onEvent?.({\n kind: 'challenge',\n payload: msg.payload as { kind: string; url: string },\n });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as { code: string; message: string },\n });\n break;\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Buy button setup failed',\n });\n }\n }\n\n // ------- setupGooglePay -------\n async function setupGooglePay(\n opts: SetupGooglePayOptions,\n ): Promise<Result<GooglePayFrame, SetupGooglePayError>> {\n const channelId = `googlepay-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.googlePay,\n {\n clientToken: core.context.clientToken,\n signature: opts.quote,\n channelId,\n ...(opts.externalTransactionId && { externalTransactionId: opts.externalTransactionId }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'challenge':\n opts.onEvent?.({\n kind: 'challenge',\n payload: msg.payload as GooglePayInboundMessageMap['challenge'],\n });\n break;\n case 'error': {\n const payload = msg.payload as { code: string; message: string };\n if (payload.code === 'quoteExpired') {\n opts.onEvent?.({ kind: 'quoteExpired', payload: { setQuote } });\n } else if (payload.code === 'googlePayUnavailable') {\n opts.onEvent?.({ kind: 'unsupported' });\n } else {\n const kind =\n payload.code === 'generic'\n ? 'genericError'\n : (payload.code as 'configurationError' | 'invalidQuote' | 'genericError');\n opts.onEvent?.({\n kind: 'error',\n payload: { kind, message: payload.message },\n });\n }\n break;\n }\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Google Pay setup failed',\n });\n }\n }\n\n // ------- resetConnection (hidden frame) -------\n async function resetConnection(): Promise<Result<void, ResetConnectionError>> {\n const channelId = `reset-${Date.now()}`;\n const url = buildFrameUrl(FRAME_PATHS.reset, { sessionToken, channelId }, { frameBaseUrl });\n\n try {\n const { promise } = createManagedFrame({\n url,\n channelId,\n hidden: true,\n handshakeTimeout: 5_000,\n });\n\n const { handle, slotId } = await promise;\n\n return new Promise<Result<void, ResetConnectionError>>((resolve) => {\n const timeout = setTimeout(() => {\n handle.dispose();\n removeSlot(slotId);\n resolve(ok(undefined));\n }, 5_000);\n\n handle.onMessage((msg: ProtocolMessage) => {\n if (msg.kind === 'complete' || msg.kind === 'error') {\n clearTimeout(timeout);\n handle.dispose();\n removeSlot(slotId);\n resolve(ok(undefined));\n }\n });\n });\n } catch {\n return ok(undefined);\n }\n }\n\n // ------- setupChallenge -------\n async function setupChallenge(\n opts: SetupChallengeOptions,\n ): Promise<Result<ChallengeFrame, SetupChallengeError>> {\n let url: URL;\n try {\n url = new URL(opts.url);\n } catch {\n return err({ kind: 'configurationError', message: 'Invalid challenge URL' });\n }\n\n let channelId = url.searchParams.get('channelId') ?? '';\n if (!channelId) {\n channelId = `challenge-${Date.now()}`;\n url.searchParams.set('channelId', channelId);\n }\n\n try {\n const { promise } = createManagedFrame({\n url: url.toString(),\n channelId,\n hidden: false,\n });\n const { handle, slotId } = await promise;\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as ChallengeCompleteResult,\n });\n break;\n case 'cancelled':\n opts.onEvent?.({\n kind: 'cancelled',\n payload: msg.payload as ChallengeCancellation,\n });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as { code: string; message: string },\n });\n break;\n }\n });\n\n return ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Challenge setup failed',\n });\n }\n }\n\n // ------- setupAddCard -------\n async function setupAddCard(\n opts: SetupAddCardOptions,\n ): Promise<Result<AddCardFrame, SetupAddCardError>> {\n const channelId = `add-card-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.addCard,\n { channelId, clientToken: core.context.clientToken },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'complete':\n opts.onEvent?.({ kind: 'complete', payload: msg.payload as { card: CardResponse } });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as {\n code: 'generic' | 'configurationError';\n message: string;\n },\n });\n break;\n }\n });\n\n return ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Add card setup failed',\n });\n }\n }\n\n return {\n getConnection,\n connect,\n setupAuth,\n getPaymentMethods: () => core.getPaymentMethods(),\n getQuote: (params) => core.getQuote(params),\n listTransactions: (params) => core.listTransactions(params),\n getTransaction: (id) => core.getTransaction(id),\n setupWidget,\n setupApplePay,\n setupBuy,\n setupBuyButton,\n setupGooglePay,\n deletePaymentMethod: (id) => core.deletePaymentMethod(id),\n resetConnection,\n setupChallenge,\n setupAddCard,\n\n createIdentity: (body) => core.createIdentity(body),\n getIdentity: (id) => core.getIdentity(id),\n updateIdentity: (id, body) => core.updateIdentity(id, body),\n verifyIdentity: (id) => core.verifyIdentity(id),\n getIdentityUploadUrl: (id, body) => core.getIdentityUploadUrl(id, body),\n submitIdentityFiles: (id, body) => core.submitIdentityFiles(id, body),\n };\n }, [sessionToken, frameBaseUrl, core, addSlot, removeSlot]);\n\n return (\n <MoonPayContext.Provider value={{ client }}>\n {children}\n {frameSlots.map((slot) => (\n <MoonPayFrame key={slot.id} transport={slot.transport} hidden={slot.hidden} />\n ))}\n </MoonPayContext.Provider>\n );\n}\n\n// ---------------------------------------------------------------------------\n// Hook\n// ---------------------------------------------------------------------------\n\nexport function useMoonPay(): MoonPayContextValue {\n const ctx = useContext(MoonPayContext);\n if (!ctx) {\n throw new Error('useMoonPay must be used within a <MoonPayProvider>');\n }\n return ctx;\n}\n","import type { ProtocolMessage } from '@moonpay/platform-protocol';\nimport type { FrameOptions, FrameTransport } from '@moonpay/platform-sdk-core';\nimport type { RefObject } from 'react';\nimport type WebView from 'react-native-webview';\n\n/**\n * FrameTransport implementation for React Native using react-native-webview.\n *\n * Unlike the web IframeTransport, the WebView is rendered declaratively via\n * React components. This transport bridges the imperative FrameTransport\n * interface to a WebView ref.\n */\nexport class WebViewTransport implements FrameTransport {\n private webViewRef: RefObject<WebView | null> | null = null;\n private handlers: Array<(msg: ProtocolMessage) => void> = [];\n private _url: string = '';\n private _options: FrameOptions | null = null;\n\n /** Called by the frame component when it mounts the WebView. */\n attachWebView(ref: RefObject<WebView | null>): void {\n this.webViewRef = ref;\n }\n\n /** Called by the WebView's onMessage prop to route incoming messages. */\n handleWebViewMessage(data: string): void {\n try {\n const msg: ProtocolMessage = JSON.parse(data);\n if (!msg.kind) return;\n for (const handler of this.handlers) {\n handler(msg);\n }\n } catch {\n // Ignore non-protocol messages\n }\n }\n\n get url(): string {\n return this._url;\n }\n\n get options(): FrameOptions | null {\n return this._options;\n }\n\n // FrameTransport interface\n\n create(url: string, options: FrameOptions): void {\n this._url = url;\n this._options = options;\n // The actual WebView rendering is handled by React components.\n // This method stores the URL and options for the component to read.\n }\n\n sendMessage(message: ProtocolMessage): void {\n if (!this.webViewRef?.current) {\n throw new Error('Cannot send message: WebView not attached');\n }\n const js = `\n window.postMessage(${JSON.stringify(JSON.stringify(message))}, '*');\n true;\n `;\n this.webViewRef.current.injectJavaScript(js);\n }\n\n onMessage(handler: (msg: ProtocolMessage) => void): () => void {\n this.handlers.push(handler);\n return () => {\n const idx = this.handlers.indexOf(handler);\n if (idx >= 0) this.handlers.splice(idx, 1);\n };\n }\n\n dispose(): void {\n this.handlers.length = 0;\n this.webViewRef = null;\n this._url = '';\n this._options = null;\n }\n}\n"],"mappings":"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","names":["WebView","import_react","import_jsx_runtime"]}
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ProtocolMessage, ConnectEvent, Result, Connection, GetConnectionError, ConnectError, AuthEvent, SetupAuthError, ListPaymentMethodsResponse, GetPaymentMethodsError, GetQuoteParams, Quote, GetQuoteError, Transaction, PaginationInfo, GetTransactionsError, TransactionWithStages, WidgetEvent, SetupWidgetError, ApplePayEvent, SetupApplePayError, BuyEvent, SetupBuyError, BuyButtonEvent, SetupBuyButtonError, GooglePayEvent, SetupGooglePayError, ChallengeEvent, SetupChallengeError, AddCardEvent, SetupAddCardError, CreateIdentityRequestBody, Identity, CreateIdentityError, GetIdentityError, UpdateIdentityRequestBody, UpdateIdentityError, IdentityVerificationResponse, VerifyIdentityError, IdentityFileUploadUrlRequestBody, IdentityFileUploadUrl, GetIdentityUploadUrlError, SubmitIdentityFilesRequestBody, SubmitIdentityFilesError } from '@moonpay/platform-protocol';
|
|
2
|
-
export { AddCardEvent, ApplePayEvent, AuthEvent, BuyButtonEvent, BuyEvent, CardResponse, ChallengeCancellation, ChallengeCompleteResult, ChallengeEvent, ConnectEvent, Connection, ConnectionStatus, GetQuoteParams, GooglePayEvent, PaymentMethodConfig, Quote, Result, StoredPaymentMethod, Transaction, TransactionWithStages, WidgetEvent } from '@moonpay/platform-protocol';
|
|
1
|
+
import { ProtocolMessage, ConnectEvent, Result, Connection, GetConnectionError, ConnectError, AuthEvent, SetupAuthError, ListPaymentMethodsResponse, GetPaymentMethodsError, GetQuoteParams, Quote, GetQuoteError, Transaction, PaginationInfo, GetTransactionsError, TransactionWithStages, WidgetEvent, SetupWidgetError, ApplePayEvent, SetupApplePayError, BuyEvent, SetupBuyError, BuyButtonEvent, SetupBuyButtonError, GooglePayEvent, SetupGooglePayError, DevPlatformApiError, ResetConnectionError, ChallengeEvent, SetupChallengeError, AddCardEvent, SetupAddCardError, CreateIdentityRequestBody, Identity, CreateIdentityError, GetIdentityError, UpdateIdentityRequestBody, UpdateIdentityError, IdentityVerificationResponse, VerifyIdentityError, IdentityFileUploadUrlRequestBody, IdentityFileUploadUrl, GetIdentityUploadUrlError, SubmitIdentityFilesRequestBody, SubmitIdentityFilesError } from '@moonpay/platform-protocol';
|
|
2
|
+
export { AddCardEvent, ApplePayEvent, AuthEvent, BuyButtonEvent, BuyEvent, CardResponse, ChallengeCancellation, ChallengeCompleteResult, ChallengeEvent, ConnectEvent, Connection, ConnectionStatus, GetQuoteParams, GooglePayEvent, PaymentMethodConfig, PaymentMethodType, Quote, Result, StoredCardPaymentMethod, StoredPaymentMethod, Transaction, TransactionWithStages, WidgetEvent } from '@moonpay/platform-protocol';
|
|
3
3
|
import { ViewStyle } from 'react-native';
|
|
4
4
|
import { FrameTransport, FrameOptions, ListTransactionsParams } from '@moonpay/platform-sdk-core';
|
|
5
5
|
import { RefObject, ReactNode } from 'react';
|
|
@@ -170,6 +170,14 @@ interface RNClient {
|
|
|
170
170
|
setupBuy(options: SetupBuyOptions): Promise<Result<BuyFrame, SetupBuyError>>;
|
|
171
171
|
setupBuyButton(options: SetupBuyButtonOptions): Promise<Result<BuyButtonFrame, SetupBuyButtonError>>;
|
|
172
172
|
setupGooglePay(options: SetupGooglePayOptions): Promise<Result<GooglePayFrame, SetupGooglePayError>>;
|
|
173
|
+
deletePaymentMethod(id: string): Promise<Result<void, DevPlatformApiError>>;
|
|
174
|
+
/**
|
|
175
|
+
* Clears the customer's MoonPay connection for this partner by running the
|
|
176
|
+
* reset frame. Resolves when the reset completes or times out (5s).
|
|
177
|
+
* Call this after clearing your own local auth state (the client reference
|
|
178
|
+
* can be captured before disposal since the session token is baked in).
|
|
179
|
+
*/
|
|
180
|
+
resetConnection(): Promise<Result<void, ResetConnectionError>>;
|
|
173
181
|
setupChallenge(options: SetupChallengeOptions): Promise<Result<ChallengeFrame, SetupChallengeError>>;
|
|
174
182
|
setupAddCard(options: SetupAddCardOptions): Promise<Result<AddCardFrame, SetupAddCardError>>;
|
|
175
183
|
createIdentity(body: CreateIdentityRequestBody): Promise<Result<{
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ProtocolMessage, ConnectEvent, Result, Connection, GetConnectionError, ConnectError, AuthEvent, SetupAuthError, ListPaymentMethodsResponse, GetPaymentMethodsError, GetQuoteParams, Quote, GetQuoteError, Transaction, PaginationInfo, GetTransactionsError, TransactionWithStages, WidgetEvent, SetupWidgetError, ApplePayEvent, SetupApplePayError, BuyEvent, SetupBuyError, BuyButtonEvent, SetupBuyButtonError, GooglePayEvent, SetupGooglePayError, ChallengeEvent, SetupChallengeError, AddCardEvent, SetupAddCardError, CreateIdentityRequestBody, Identity, CreateIdentityError, GetIdentityError, UpdateIdentityRequestBody, UpdateIdentityError, IdentityVerificationResponse, VerifyIdentityError, IdentityFileUploadUrlRequestBody, IdentityFileUploadUrl, GetIdentityUploadUrlError, SubmitIdentityFilesRequestBody, SubmitIdentityFilesError } from '@moonpay/platform-protocol';
|
|
2
|
-
export { AddCardEvent, ApplePayEvent, AuthEvent, BuyButtonEvent, BuyEvent, CardResponse, ChallengeCancellation, ChallengeCompleteResult, ChallengeEvent, ConnectEvent, Connection, ConnectionStatus, GetQuoteParams, GooglePayEvent, PaymentMethodConfig, Quote, Result, StoredPaymentMethod, Transaction, TransactionWithStages, WidgetEvent } from '@moonpay/platform-protocol';
|
|
1
|
+
import { ProtocolMessage, ConnectEvent, Result, Connection, GetConnectionError, ConnectError, AuthEvent, SetupAuthError, ListPaymentMethodsResponse, GetPaymentMethodsError, GetQuoteParams, Quote, GetQuoteError, Transaction, PaginationInfo, GetTransactionsError, TransactionWithStages, WidgetEvent, SetupWidgetError, ApplePayEvent, SetupApplePayError, BuyEvent, SetupBuyError, BuyButtonEvent, SetupBuyButtonError, GooglePayEvent, SetupGooglePayError, DevPlatformApiError, ResetConnectionError, ChallengeEvent, SetupChallengeError, AddCardEvent, SetupAddCardError, CreateIdentityRequestBody, Identity, CreateIdentityError, GetIdentityError, UpdateIdentityRequestBody, UpdateIdentityError, IdentityVerificationResponse, VerifyIdentityError, IdentityFileUploadUrlRequestBody, IdentityFileUploadUrl, GetIdentityUploadUrlError, SubmitIdentityFilesRequestBody, SubmitIdentityFilesError } from '@moonpay/platform-protocol';
|
|
2
|
+
export { AddCardEvent, ApplePayEvent, AuthEvent, BuyButtonEvent, BuyEvent, CardResponse, ChallengeCancellation, ChallengeCompleteResult, ChallengeEvent, ConnectEvent, Connection, ConnectionStatus, GetQuoteParams, GooglePayEvent, PaymentMethodConfig, PaymentMethodType, Quote, Result, StoredCardPaymentMethod, StoredPaymentMethod, Transaction, TransactionWithStages, WidgetEvent } from '@moonpay/platform-protocol';
|
|
3
3
|
import { ViewStyle } from 'react-native';
|
|
4
4
|
import { FrameTransport, FrameOptions, ListTransactionsParams } from '@moonpay/platform-sdk-core';
|
|
5
5
|
import { RefObject, ReactNode } from 'react';
|
|
@@ -170,6 +170,14 @@ interface RNClient {
|
|
|
170
170
|
setupBuy(options: SetupBuyOptions): Promise<Result<BuyFrame, SetupBuyError>>;
|
|
171
171
|
setupBuyButton(options: SetupBuyButtonOptions): Promise<Result<BuyButtonFrame, SetupBuyButtonError>>;
|
|
172
172
|
setupGooglePay(options: SetupGooglePayOptions): Promise<Result<GooglePayFrame, SetupGooglePayError>>;
|
|
173
|
+
deletePaymentMethod(id: string): Promise<Result<void, DevPlatformApiError>>;
|
|
174
|
+
/**
|
|
175
|
+
* Clears the customer's MoonPay connection for this partner by running the
|
|
176
|
+
* reset frame. Resolves when the reset completes or times out (5s).
|
|
177
|
+
* Call this after clearing your own local auth state (the client reference
|
|
178
|
+
* can be captured before disposal since the session token is baked in).
|
|
179
|
+
*/
|
|
180
|
+
resetConnection(): Promise<Result<void, ResetConnectionError>>;
|
|
173
181
|
setupChallenge(options: SetupChallengeOptions): Promise<Result<ChallengeFrame, SetupChallengeError>>;
|
|
174
182
|
setupAddCard(options: SetupAddCardOptions): Promise<Result<AddCardFrame, SetupAddCardError>>;
|
|
175
183
|
createIdentity(body: CreateIdentityRequestBody): Promise<Result<{
|
package/dist/index.js
CHANGED
|
@@ -644,6 +644,36 @@ function MoonPayProvider({
|
|
|
644
644
|
});
|
|
645
645
|
}
|
|
646
646
|
}
|
|
647
|
+
async function resetConnection() {
|
|
648
|
+
const channelId = `reset-${Date.now()}`;
|
|
649
|
+
const url = buildFrameUrl(FRAME_PATHS.reset, { sessionToken, channelId }, { frameBaseUrl });
|
|
650
|
+
try {
|
|
651
|
+
const { promise } = createManagedFrame({
|
|
652
|
+
url,
|
|
653
|
+
channelId,
|
|
654
|
+
hidden: true,
|
|
655
|
+
handshakeTimeout: 5e3
|
|
656
|
+
});
|
|
657
|
+
const { handle, slotId } = await promise;
|
|
658
|
+
return new Promise((resolve) => {
|
|
659
|
+
const timeout = setTimeout(() => {
|
|
660
|
+
handle.dispose();
|
|
661
|
+
removeSlot(slotId);
|
|
662
|
+
resolve(ok(void 0));
|
|
663
|
+
}, 5e3);
|
|
664
|
+
handle.onMessage((msg) => {
|
|
665
|
+
if (msg.kind === "complete" || msg.kind === "error") {
|
|
666
|
+
clearTimeout(timeout);
|
|
667
|
+
handle.dispose();
|
|
668
|
+
removeSlot(slotId);
|
|
669
|
+
resolve(ok(void 0));
|
|
670
|
+
}
|
|
671
|
+
});
|
|
672
|
+
});
|
|
673
|
+
} catch {
|
|
674
|
+
return ok(void 0);
|
|
675
|
+
}
|
|
676
|
+
}
|
|
647
677
|
async function setupChallenge(opts) {
|
|
648
678
|
let url;
|
|
649
679
|
try {
|
|
@@ -750,6 +780,8 @@ function MoonPayProvider({
|
|
|
750
780
|
setupBuy,
|
|
751
781
|
setupBuyButton,
|
|
752
782
|
setupGooglePay,
|
|
783
|
+
deletePaymentMethod: (id) => core.deletePaymentMethod(id),
|
|
784
|
+
resetConnection,
|
|
753
785
|
setupChallenge,
|
|
754
786
|
setupAddCard,
|
|
755
787
|
createIdentity: (body) => core.createIdentity(body),
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/frame-component.tsx","../src/provider.tsx","../src/webview-transport.ts"],"sourcesContent":["import { useEffect, useRef } from 'react';\nimport { View, type ViewStyle } from 'react-native';\nimport WebView, { type WebViewMessageEvent } from 'react-native-webview';\nimport type { WebViewTransport } from './webview-transport.js';\n\nexport interface MoonPayFrameProps {\n /** The transport instance managing this frame's communication. */\n transport: WebViewTransport;\n /** Whether this is a hidden utility frame (zero height). */\n hidden?: boolean;\n /** Optional style overrides for the container view. */\n style?: ViewStyle;\n}\n\n/**\n * Reusable React Native component that renders a MoonPay frame as a WebView.\n * Bridges the WebViewTransport to the actual WebView instance.\n */\nexport function MoonPayFrame({ transport, hidden, style }: MoonPayFrameProps): JSX.Element | null {\n const webViewRef = useRef<WebView>(null);\n\n useEffect(() => {\n transport.attachWebView(webViewRef);\n return () => {\n // Don't dispose — the orchestrator manages lifecycle\n };\n }, [transport]);\n\n const url = transport.url;\n if (!url) return null;\n\n const handleMessage = (event: WebViewMessageEvent) => {\n transport.handleWebViewMessage(event.nativeEvent.data);\n };\n\n const containerStyle: ViewStyle = hidden\n ? { width: 0, height: 0, overflow: 'hidden' }\n : { flex: 1, ...style };\n\n return (\n <View style={containerStyle}>\n <WebView\n ref={webViewRef}\n source={{ uri: url }}\n onMessage={handleMessage}\n allowsInlineMediaPlayback\n javaScriptEnabled\n domStorageEnabled\n style={{ flex: 1 }}\n />\n </View>\n );\n}\n","import {\n type AddCardEvent,\n type ApplePayEvent,\n type AuthEvent,\n type BuyButtonEvent,\n type BuyEvent,\n type CardResponse,\n type ChallengeCancellation,\n type ChallengeCompleteResult,\n type ChallengeEvent,\n type ConnectError,\n type ConnectEvent,\n type Connection,\n ConnectionStatus,\n type CreateIdentityError,\n type CreateIdentityRequestBody,\n err,\n type GetConnectionError,\n type GetIdentityError,\n type GetIdentityUploadUrlError,\n type GetPaymentMethodsError,\n type GetQuoteError,\n type GetQuoteParams,\n type GetTransactionsError,\n type GooglePayEvent,\n type GooglePayInboundMessageMap,\n type Identity,\n type IdentityFileUploadUrl,\n type IdentityFileUploadUrlRequestBody,\n type IdentityVerificationResponse,\n type ListPaymentMethodsResponse,\n ok,\n type PaginationInfo,\n type ProtocolMessage,\n type Quote,\n type Result,\n type SetupAddCardError,\n type SetupApplePayError,\n type SetupAuthError,\n type SetupBuyButtonError,\n type SetupBuyError,\n type SetupChallengeError,\n type SetupGooglePayError,\n type SetupWidgetError,\n type SubmitIdentityFilesError,\n type SubmitIdentityFilesRequestBody,\n type Transaction,\n type TransactionWithStages,\n type UpdateIdentityError,\n type UpdateIdentityRequestBody,\n type VerifyIdentityError,\n type WidgetEvent,\n} from '@moonpay/platform-protocol';\nimport {\n buildFrameUrl,\n type CoreClient,\n createClientCore,\n createFrameOrchestrator,\n decryptCredentials,\n FRAME_PATHS,\n type FrameHandle,\n generateKeyPair,\n type ListTransactionsParams,\n} from '@moonpay/platform-sdk-core';\nimport {\n createContext,\n type ReactNode,\n useCallback,\n useContext,\n useMemo,\n useRef,\n useState,\n} from 'react';\nimport { MoonPayFrame } from './frame-component.js';\nimport { WebViewTransport } from './webview-transport.js';\n\n// ---------------------------------------------------------------------------\n// Frame slot — represents a frame the provider needs to render\n// ---------------------------------------------------------------------------\n\ninterface FrameSlot {\n id: string;\n transport: WebViewTransport;\n hidden: boolean;\n}\n\n// ---------------------------------------------------------------------------\n// Public types\n// ---------------------------------------------------------------------------\n\nexport interface GetConnectionOptions {\n /**\n * Pass `true` for headless / Identity-API integrations so the check\n * frame opts out of KYC-based statuses. Legal (`termsAcceptanceRequired`)\n * is always surfaced regardless. Defaults to `false`.\n */\n skipKyc?: boolean;\n}\n\nexport interface ConnectOptions {\n /** Theme options for the connect frame. */\n theme?: { appearance?: 'light' | 'dark' };\n /** Callback for connect lifecycle events. */\n onEvent?: (event: ConnectEvent) => void;\n}\n\nexport interface ConnectFrame {\n dispose(): void;\n}\n\nexport interface SetupWidgetOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Callback for widget lifecycle events. */\n onEvent?: (event: WidgetEvent) => void;\n}\n\nexport interface WidgetFrame {\n dispose(): void;\n}\n\nexport interface SetupApplePayOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Callback for Apple Pay lifecycle events. */\n onEvent?: (event: ApplePayEvent) => void;\n}\n\nexport interface ApplePayFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupBuyOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Partner-assigned identifier for this transaction attempt. */\n externalTransactionId?: string;\n /** Callback for buy frame lifecycle events. */\n onEvent?: (event: BuyEvent) => void;\n}\n\nexport interface BuyFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupBuyButtonOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Callback for buy-button frame lifecycle events. */\n onEvent?: (event: BuyButtonEvent) => void;\n}\n\nexport interface BuyButtonFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupGooglePayOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Partner-assigned identifier for this transaction attempt. */\n externalTransactionId?: string;\n /** Callback for Google Pay lifecycle events. */\n onEvent?: (event: GooglePayEvent) => void;\n}\n\nexport interface GooglePayFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupChallengeOptions {\n /** Full challenge URL received from a frame's `challenge` event. */\n url: string;\n /** Callback for challenge frame lifecycle events. */\n onEvent?: (event: ChallengeEvent) => void;\n}\n\nexport interface ChallengeFrame {\n dispose(): void;\n}\n\nexport interface SetupAddCardOptions {\n /** Callback for add-card frame lifecycle events. */\n onEvent?: (event: AddCardEvent) => void;\n}\n\nexport interface AddCardFrame {\n dispose(): void;\n}\n\nexport interface SetupAuthOptions {\n /** Callback for auth frame lifecycle events. */\n onEvent?: (event: AuthEvent) => void;\n}\n\nexport interface AuthFrame {\n dispose(): void;\n}\n\nexport interface RNClient {\n getConnection(options?: GetConnectionOptions): Promise<Result<Connection, GetConnectionError>>;\n connect(options: ConnectOptions): Promise<Result<ConnectFrame, ConnectError>>;\n /**\n * Launch the auth frame — the lighter-weight counterpart to `connect()`\n * for headless / Identity-API partners. Requires a `clientToken` to be\n * present in the client's context, which is populated automatically by a\n * prior `getConnection()` call that returned `connectionRequired`.\n * Call `getConnection()` first; if its status is `connectionRequired`,\n * call `setupAuth()` to drive the customer through email/OTP.\n */\n setupAuth(options: SetupAuthOptions): Promise<Result<AuthFrame, SetupAuthError>>;\n getPaymentMethods(): Promise<Result<ListPaymentMethodsResponse, GetPaymentMethodsError>>;\n getQuote(params: GetQuoteParams): Promise<Result<{ data: Quote }, GetQuoteError>>;\n listTransactions(\n params?: ListTransactionsParams,\n ): Promise<Result<{ data: Transaction[]; pageInfo: PaginationInfo }, GetTransactionsError>>;\n getTransaction(\n id: string,\n ): Promise<Result<{ data: TransactionWithStages }, GetTransactionsError>>;\n setupWidget(options: SetupWidgetOptions): Promise<Result<WidgetFrame, SetupWidgetError>>;\n setupApplePay(options: SetupApplePayOptions): Promise<Result<ApplePayFrame, SetupApplePayError>>;\n setupBuy(options: SetupBuyOptions): Promise<Result<BuyFrame, SetupBuyError>>;\n setupBuyButton(\n options: SetupBuyButtonOptions,\n ): Promise<Result<BuyButtonFrame, SetupBuyButtonError>>;\n setupGooglePay(\n options: SetupGooglePayOptions,\n ): Promise<Result<GooglePayFrame, SetupGooglePayError>>;\n setupChallenge(\n options: SetupChallengeOptions,\n ): Promise<Result<ChallengeFrame, SetupChallengeError>>;\n setupAddCard(options: SetupAddCardOptions): Promise<Result<AddCardFrame, SetupAddCardError>>;\n\n // Identity API\n createIdentity(\n body: CreateIdentityRequestBody,\n ): Promise<Result<{ data: Identity | null }, CreateIdentityError>>;\n getIdentity(id: string): Promise<Result<{ data: Identity }, GetIdentityError>>;\n updateIdentity(\n id: string,\n body: UpdateIdentityRequestBody,\n ): Promise<Result<{ data: Identity }, UpdateIdentityError>>;\n verifyIdentity(\n id: string,\n ): Promise<Result<{ data: IdentityVerificationResponse }, VerifyIdentityError>>;\n getIdentityUploadUrl(\n id: string,\n body: IdentityFileUploadUrlRequestBody,\n ): Promise<Result<{ data: IdentityFileUploadUrl }, GetIdentityUploadUrlError>>;\n submitIdentityFiles(\n id: string,\n body: SubmitIdentityFilesRequestBody,\n ): Promise<Result<{ data: Identity }, SubmitIdentityFilesError>>;\n}\n\n// ---------------------------------------------------------------------------\n// Context\n// ---------------------------------------------------------------------------\n\ninterface MoonPayContextValue {\n client: RNClient;\n}\n\nconst MoonPayContext = createContext<MoonPayContextValue | null>(null);\n\n// ---------------------------------------------------------------------------\n// Provider\n// ---------------------------------------------------------------------------\n\nexport interface MoonPayProviderProps {\n sessionToken: string;\n apiBaseUrl?: string;\n frameBaseUrl?: string;\n children: ReactNode;\n}\n\nlet slotCounter = 0;\n\nexport function MoonPayProvider({\n sessionToken,\n apiBaseUrl,\n frameBaseUrl,\n children,\n}: MoonPayProviderProps): JSX.Element {\n const [frameSlots, setFrameSlots] = useState<FrameSlot[]>([]);\n\n // Stable refs for addSlot/removeSlot so client methods don't re-create\n const addSlot = useCallback((slot: FrameSlot) => {\n setFrameSlots((prev) => [...prev, slot]);\n }, []);\n\n const removeSlot = useCallback((id: string) => {\n setFrameSlots((prev) => prev.filter((s) => s.id !== id));\n }, []);\n\n // Keep a ref to core so it's stable across renders\n const coreRef = useRef<CoreClient | null>(null);\n if (!coreRef.current) {\n coreRef.current = createClientCore({\n apiBaseUrl,\n frameBaseUrl,\n createTransport: () => new WebViewTransport(),\n });\n }\n const core = coreRef.current;\n\n const client = useMemo<RNClient>(() => {\n // Helper: create a transport + slot, wait for orchestrator handshake\n function createManagedFrame(opts: {\n url: string;\n channelId: string;\n hidden: boolean;\n handshakeTimeout?: number;\n }): { promise: Promise<{ handle: FrameHandle; slotId: string }>; transport: WebViewTransport } {\n const transport = new WebViewTransport();\n const slotId = `slot-${++slotCounter}`;\n\n const promise = new Promise<{ handle: FrameHandle; slotId: string }>((resolve, reject) => {\n // Defer adding the slot to allow the transport to be fully set up\n // before the WebView renders\n transport.create(opts.url, { container: null, hidden: opts.hidden });\n\n addSlot({ id: slotId, transport, hidden: opts.hidden });\n\n createFrameOrchestrator({\n transport,\n channelId: opts.channelId,\n url: opts.url,\n container: null,\n hidden: opts.hidden,\n handshakeTimeout: opts.handshakeTimeout ?? 15_000,\n })\n .then((handle) => resolve({ handle, slotId }))\n .catch((e) => {\n removeSlot(slotId);\n reject(e);\n });\n });\n\n return { promise, transport };\n }\n\n // ------- getConnection (hidden frame) -------\n async function getConnection(\n options: GetConnectionOptions = {},\n ): Promise<Result<Connection, GetConnectionError>> {\n const { privateKey, publicKey } = generateKeyPair();\n const channelId = `check-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.checkConnection,\n {\n sessionToken,\n channelId,\n publicKey,\n ...(options.skipKyc && { skipKyc: true }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({\n url,\n channelId,\n hidden: true,\n handshakeTimeout: 10_000,\n });\n\n const { handle, slotId } = await promise;\n\n return new Promise<Result<Connection, GetConnectionError>>((resolve) => {\n const timeout = setTimeout(() => {\n handle.dispose();\n removeSlot(slotId);\n resolve(err({ message: 'Get connection timed out' }));\n }, 10_000);\n\n handle.onMessage((msg: ProtocolMessage) => {\n if (msg.kind === 'error') {\n clearTimeout(timeout);\n handle.dispose();\n removeSlot(slotId);\n const payload = msg.payload as { message: string };\n resolve(err({ message: payload.message }));\n return;\n }\n\n if (msg.kind === 'complete') {\n clearTimeout(timeout);\n handle.dispose();\n removeSlot(slotId);\n const connection = msg.payload as Connection;\n\n if (connection.status === ConnectionStatus.active) {\n const creds = decryptCredentials(connection.credentials, privateKey);\n core.context.setAccessToken(creds.accessToken);\n core.context.setClientToken(creds.clientToken);\n }\n\n resolve(ok(connection));\n }\n });\n });\n } catch (e) {\n return err({\n message: e instanceof Error ? e.message : 'Failed to check connection',\n });\n }\n }\n\n // ------- connect (visible frame) -------\n async function connect(opts: ConnectOptions): Promise<Result<ConnectFrame, ConnectError>> {\n const { privateKey, publicKey } = generateKeyPair();\n const channelId = `connect-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.connect,\n {\n sessionToken,\n channelId,\n publicKey,\n ...(opts.theme?.appearance && { appearance: opts.theme.appearance }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n return new Promise<Result<ConnectFrame, ConnectError>>((resolve) => {\n handle.onMessage((msg: ProtocolMessage) => {\n if (msg.kind === 'ready') {\n opts.onEvent?.({ kind: 'ready' });\n return;\n }\n\n if (msg.kind === 'error') {\n const payload = msg.payload as import('@moonpay/platform-protocol').ConnectionError;\n opts.onEvent?.({ kind: 'error', payload });\n handle.dispose();\n removeSlot(slotId);\n resolve(err({ message: 'Connection error' }));\n return;\n }\n\n if (msg.kind === 'complete') {\n const connection = msg.payload as Connection;\n\n if (connection.status === ConnectionStatus.active) {\n const creds = decryptCredentials(connection.credentials, privateKey);\n core.context.setAccessToken(creds.accessToken);\n core.context.setClientToken(creds.clientToken);\n }\n\n opts.onEvent?.({ kind: 'complete', payload: connection });\n resolve(\n ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n }),\n );\n }\n });\n });\n } catch (e) {\n return err({\n message: e instanceof Error ? e.message : 'Connect failed',\n });\n }\n }\n\n // ------- setupAuth (visible frame) -------\n async function setupAuth(opts: SetupAuthOptions): Promise<Result<AuthFrame, SetupAuthError>> {\n const clientToken = core.context.clientToken;\n if (!clientToken) {\n return err({\n kind: 'configurationError',\n message:\n 'No clientToken in context — call getConnection() first and ensure it resolved with status \"connectionRequired\".',\n });\n }\n\n const { privateKey, publicKey } = generateKeyPair();\n const channelId = `auth-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.auth,\n { clientToken, channelId, publicKey },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n return new Promise<Result<AuthFrame, SetupAuthError>>((resolve) => {\n handle.onMessage((msg: ProtocolMessage) => {\n if (msg.kind === 'ready') {\n opts.onEvent?.({ kind: 'ready' });\n return;\n }\n\n if (msg.kind === 'error') {\n const payload = msg.payload as import('@moonpay/platform-protocol').ConnectionError;\n opts.onEvent?.({ kind: 'error', payload });\n handle.dispose();\n removeSlot(slotId);\n resolve(err({ kind: 'genericError', message: 'Auth frame error' }));\n return;\n }\n\n if (msg.kind === 'complete') {\n const connection = msg.payload as Connection;\n\n if (connection.status === ConnectionStatus.active) {\n const creds = decryptCredentials(connection.credentials, privateKey);\n core.context.setAccessToken(creds.accessToken);\n core.context.setClientToken(creds.clientToken);\n }\n\n if (\n connection.status === ConnectionStatus.active ||\n connection.status === ConnectionStatus.termsAcceptanceRequired\n ) {\n opts.onEvent?.({ kind: 'complete', payload: connection });\n }\n resolve(\n ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n }),\n );\n }\n });\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Auth setup failed',\n });\n }\n }\n\n // ------- setupWidget -------\n async function setupWidget(\n opts: SetupWidgetOptions,\n ): Promise<Result<WidgetFrame, SetupWidgetError>> {\n const channelId = `widget-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.widget,\n {\n flow: 'buy',\n clientToken: core.context.clientToken,\n quoteSignature: opts.quote,\n channelId,\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'transactionCreated':\n opts.onEvent?.({\n kind: 'transactionCreated',\n payload: msg.payload as { transaction: { id: string; status: string } },\n });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'error': {\n const payload = msg.payload as {\n code: 'configurationError' | 'apiError' | 'generic';\n message: string;\n };\n opts.onEvent?.({\n kind: 'error',\n payload: { code: payload.code, message: payload.message },\n });\n break;\n }\n case 'close':\n opts.onEvent?.({ kind: 'close' });\n break;\n }\n });\n\n return ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Widget setup failed',\n });\n }\n }\n\n // ------- setupApplePay -------\n async function setupApplePay(\n opts: SetupApplePayOptions,\n ): Promise<Result<ApplePayFrame, SetupApplePayError>> {\n const channelId = `applepay-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.applePay,\n {\n clientToken: core.context.clientToken,\n signature: opts.quote,\n channelId,\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'error': {\n const payload = msg.payload as { code: string; message: string };\n if (payload.code === 'quoteExpired') {\n opts.onEvent?.({ kind: 'quoteExpired', payload: { setQuote } });\n } else if (payload.code === 'applePayUnavailable') {\n opts.onEvent?.({ kind: 'unsupported' });\n } else {\n const kind =\n payload.code === 'generic'\n ? 'genericError'\n : (payload.code as\n | 'configurationError'\n | 'invalidQuote'\n | 'oneTapApplePaySecondFactorRequired'\n | 'genericError');\n opts.onEvent?.({\n kind: 'error',\n payload: { kind, message: payload.message },\n });\n }\n break;\n }\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Apple Pay setup failed',\n });\n }\n }\n\n // ------- setupBuy (hidden frame) -------\n async function setupBuy(opts: SetupBuyOptions): Promise<Result<BuyFrame, SetupBuyError>> {\n const channelId = `buy-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.buy,\n {\n channelId,\n clientToken: core.context.clientToken,\n signature: opts.quote,\n ...(opts.externalTransactionId && { externalTransactionId: opts.externalTransactionId }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: true });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'challenge':\n opts.onEvent?.({\n kind: 'challenge',\n payload: msg.payload as { kind: string; url: string },\n });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as { code: string; message: string },\n });\n break;\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Buy setup failed',\n });\n }\n }\n\n // ------- setupBuyButton -------\n async function setupBuyButton(\n opts: SetupBuyButtonOptions,\n ): Promise<Result<BuyButtonFrame, SetupBuyButtonError>> {\n const channelId = `buy-button-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.buyButton,\n {\n channelId,\n clientToken: core.context.clientToken,\n signature: opts.quote,\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'challenge':\n opts.onEvent?.({\n kind: 'challenge',\n payload: msg.payload as { kind: string; url: string },\n });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as { code: string; message: string },\n });\n break;\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Buy button setup failed',\n });\n }\n }\n\n // ------- setupGooglePay -------\n async function setupGooglePay(\n opts: SetupGooglePayOptions,\n ): Promise<Result<GooglePayFrame, SetupGooglePayError>> {\n const channelId = `googlepay-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.googlePay,\n {\n clientToken: core.context.clientToken,\n signature: opts.quote,\n channelId,\n ...(opts.externalTransactionId && { externalTransactionId: opts.externalTransactionId }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'challenge':\n opts.onEvent?.({\n kind: 'challenge',\n payload: msg.payload as GooglePayInboundMessageMap['challenge'],\n });\n break;\n case 'error': {\n const payload = msg.payload as { code: string; message: string };\n if (payload.code === 'quoteExpired') {\n opts.onEvent?.({ kind: 'quoteExpired', payload: { setQuote } });\n } else if (payload.code === 'googlePayUnavailable') {\n opts.onEvent?.({ kind: 'unsupported' });\n } else {\n const kind =\n payload.code === 'generic'\n ? 'genericError'\n : (payload.code as 'configurationError' | 'invalidQuote' | 'genericError');\n opts.onEvent?.({\n kind: 'error',\n payload: { kind, message: payload.message },\n });\n }\n break;\n }\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Google Pay setup failed',\n });\n }\n }\n\n // ------- setupChallenge -------\n async function setupChallenge(\n opts: SetupChallengeOptions,\n ): Promise<Result<ChallengeFrame, SetupChallengeError>> {\n let url: URL;\n try {\n url = new URL(opts.url);\n } catch {\n return err({ kind: 'configurationError', message: 'Invalid challenge URL' });\n }\n\n let channelId = url.searchParams.get('channelId') ?? '';\n if (!channelId) {\n channelId = `challenge-${Date.now()}`;\n url.searchParams.set('channelId', channelId);\n }\n\n try {\n const { promise } = createManagedFrame({\n url: url.toString(),\n channelId,\n hidden: false,\n });\n const { handle, slotId } = await promise;\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as ChallengeCompleteResult,\n });\n break;\n case 'cancelled':\n opts.onEvent?.({\n kind: 'cancelled',\n payload: msg.payload as ChallengeCancellation,\n });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as { code: string; message: string },\n });\n break;\n }\n });\n\n return ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Challenge setup failed',\n });\n }\n }\n\n // ------- setupAddCard -------\n async function setupAddCard(\n opts: SetupAddCardOptions,\n ): Promise<Result<AddCardFrame, SetupAddCardError>> {\n const channelId = `add-card-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.addCard,\n { channelId, clientToken: core.context.clientToken },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'complete':\n opts.onEvent?.({ kind: 'complete', payload: msg.payload as { card: CardResponse } });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as {\n code: 'generic' | 'configurationError';\n message: string;\n },\n });\n break;\n }\n });\n\n return ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Add card setup failed',\n });\n }\n }\n\n return {\n getConnection,\n connect,\n setupAuth,\n getPaymentMethods: () => core.getPaymentMethods(),\n getQuote: (params) => core.getQuote(params),\n listTransactions: (params) => core.listTransactions(params),\n getTransaction: (id) => core.getTransaction(id),\n setupWidget,\n setupApplePay,\n setupBuy,\n setupBuyButton,\n setupGooglePay,\n setupChallenge,\n setupAddCard,\n\n createIdentity: (body) => core.createIdentity(body),\n getIdentity: (id) => core.getIdentity(id),\n updateIdentity: (id, body) => core.updateIdentity(id, body),\n verifyIdentity: (id) => core.verifyIdentity(id),\n getIdentityUploadUrl: (id, body) => core.getIdentityUploadUrl(id, body),\n submitIdentityFiles: (id, body) => core.submitIdentityFiles(id, body),\n };\n }, [sessionToken, frameBaseUrl, core, addSlot, removeSlot]);\n\n return (\n <MoonPayContext.Provider value={{ client }}>\n {children}\n {frameSlots.map((slot) => (\n <MoonPayFrame key={slot.id} transport={slot.transport} hidden={slot.hidden} />\n ))}\n </MoonPayContext.Provider>\n );\n}\n\n// ---------------------------------------------------------------------------\n// Hook\n// ---------------------------------------------------------------------------\n\nexport function useMoonPay(): MoonPayContextValue {\n const ctx = useContext(MoonPayContext);\n if (!ctx) {\n throw new Error('useMoonPay must be used within a <MoonPayProvider>');\n }\n return ctx;\n}\n","import type { ProtocolMessage } from '@moonpay/platform-protocol';\nimport type { FrameOptions, FrameTransport } from '@moonpay/platform-sdk-core';\nimport type { RefObject } from 'react';\nimport type WebView from 'react-native-webview';\n\n/**\n * FrameTransport implementation for React Native using react-native-webview.\n *\n * Unlike the web IframeTransport, the WebView is rendered declaratively via\n * React components. This transport bridges the imperative FrameTransport\n * interface to a WebView ref.\n */\nexport class WebViewTransport implements FrameTransport {\n private webViewRef: RefObject<WebView | null> | null = null;\n private handlers: Array<(msg: ProtocolMessage) => void> = [];\n private _url: string = '';\n private _options: FrameOptions | null = null;\n\n /** Called by the frame component when it mounts the WebView. */\n attachWebView(ref: RefObject<WebView | null>): void {\n this.webViewRef = ref;\n }\n\n /** Called by the WebView's onMessage prop to route incoming messages. */\n handleWebViewMessage(data: string): void {\n try {\n const msg: ProtocolMessage = JSON.parse(data);\n if (!msg.kind) return;\n for (const handler of this.handlers) {\n handler(msg);\n }\n } catch {\n // Ignore non-protocol messages\n }\n }\n\n get url(): string {\n return this._url;\n }\n\n get options(): FrameOptions | null {\n return this._options;\n }\n\n // FrameTransport interface\n\n create(url: string, options: FrameOptions): void {\n this._url = url;\n this._options = options;\n // The actual WebView rendering is handled by React components.\n // This method stores the URL and options for the component to read.\n }\n\n sendMessage(message: ProtocolMessage): void {\n if (!this.webViewRef?.current) {\n throw new Error('Cannot send message: WebView not attached');\n }\n const js = `\n window.postMessage(${JSON.stringify(JSON.stringify(message))}, '*');\n true;\n `;\n this.webViewRef.current.injectJavaScript(js);\n }\n\n onMessage(handler: (msg: ProtocolMessage) => void): () => void {\n this.handlers.push(handler);\n return () => {\n const idx = this.handlers.indexOf(handler);\n if (idx >= 0) this.handlers.splice(idx, 1);\n };\n }\n\n dispose(): void {\n this.handlers.length = 0;\n this.webViewRef = null;\n this._url = '';\n this._options = null;\n }\n}\n"],"mappings":";AAAA,SAAS,WAAW,cAAc;AAClC,SAAS,YAA4B;AACrC,OAAO,aAA2C;AAuC5C;AAvBC,SAAS,aAAa,EAAE,WAAW,QAAQ,MAAM,GAA0C;AAChG,QAAM,aAAa,OAAgB,IAAI;AAEvC,YAAU,MAAM;AACd,cAAU,cAAc,UAAU;AAClC,WAAO,MAAM;AAAA,IAEb;AAAA,EACF,GAAG,CAAC,SAAS,CAAC;AAEd,QAAM,MAAM,UAAU;AACtB,MAAI,CAAC;AAAK,WAAO;AAEjB,QAAM,gBAAgB,CAAC,UAA+B;AACpD,cAAU,qBAAqB,MAAM,YAAY,IAAI;AAAA,EACvD;AAEA,QAAM,iBAA4B,SAC9B,EAAE,OAAO,GAAG,QAAQ,GAAG,UAAU,SAAS,IAC1C,EAAE,MAAM,GAAG,GAAG,MAAM;AAExB,SACE,oBAAC,QAAK,OAAO,gBACX;AAAA,IAAC;AAAA;AAAA,MACC,KAAK;AAAA,MACL,QAAQ,EAAE,KAAK,IAAI;AAAA,MACnB,WAAW;AAAA,MACX,2BAAyB;AAAA,MACzB,mBAAiB;AAAA,MACjB,mBAAiB;AAAA,MACjB,OAAO,EAAE,MAAM,EAAE;AAAA;AAAA,EACnB,GACF;AAEJ;;;ACpDA;AAAA,EAaE;AAAA,EAGA;AAAA,EAeA;AAAA,OAqBK;AACP;AAAA,EACE;AAAA,EAEA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EAEA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,EAEA;AAAA,EACA;AAAA,EACA;AAAA,EACA,UAAAA;AAAA,EACA;AAAA,OACK;;;AC5DA,IAAM,mBAAN,MAAiD;AAAA,EAC9C,aAA+C;AAAA,EAC/C,WAAkD,CAAC;AAAA,EACnD,OAAe;AAAA,EACf,WAAgC;AAAA;AAAA,EAGxC,cAAc,KAAsC;AAClD,SAAK,aAAa;AAAA,EACpB;AAAA;AAAA,EAGA,qBAAqB,MAAoB;AACvC,QAAI;AACF,YAAM,MAAuB,KAAK,MAAM,IAAI;AAC5C,UAAI,CAAC,IAAI;AAAM;AACf,iBAAW,WAAW,KAAK,UAAU;AACnC,gBAAQ,GAAG;AAAA,MACb;AAAA,IACF,QAAQ;AAAA,IAER;AAAA,EACF;AAAA,EAEA,IAAI,MAAc;AAChB,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,IAAI,UAA+B;AACjC,WAAO,KAAK;AAAA,EACd;AAAA;AAAA,EAIA,OAAO,KAAa,SAA6B;AAC/C,SAAK,OAAO;AACZ,SAAK,WAAW;AAAA,EAGlB;AAAA,EAEA,YAAY,SAAgC;AAC1C,QAAI,CAAC,KAAK,YAAY,SAAS;AAC7B,YAAM,IAAI,MAAM,2CAA2C;AAAA,IAC7D;AACA,UAAM,KAAK;AAAA,2BACY,KAAK,UAAU,KAAK,UAAU,OAAO,CAAC,CAAC;AAAA;AAAA;AAG9D,SAAK,WAAW,QAAQ,iBAAiB,EAAE;AAAA,EAC7C;AAAA,EAEA,UAAU,SAAqD;AAC7D,SAAK,SAAS,KAAK,OAAO;AAC1B,WAAO,MAAM;AACX,YAAM,MAAM,KAAK,SAAS,QAAQ,OAAO;AACzC,UAAI,OAAO;AAAG,aAAK,SAAS,OAAO,KAAK,CAAC;AAAA,IAC3C;AAAA,EACF;AAAA,EAEA,UAAgB;AACd,SAAK,SAAS,SAAS;AACvB,SAAK,aAAa;AAClB,SAAK,OAAO;AACZ,SAAK,WAAW;AAAA,EAClB;AACF;;;ADi+BI,SAGI,OAAAC,MAHJ;AAjyBJ,IAAM,iBAAiB,cAA0C,IAAI;AAarE,IAAI,cAAc;AAEX,SAAS,gBAAgB;AAAA,EAC9B;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,GAAsC;AACpC,QAAM,CAAC,YAAY,aAAa,IAAI,SAAsB,CAAC,CAAC;AAG5D,QAAM,UAAU,YAAY,CAAC,SAAoB;AAC/C,kBAAc,CAAC,SAAS,CAAC,GAAG,MAAM,IAAI,CAAC;AAAA,EACzC,GAAG,CAAC,CAAC;AAEL,QAAM,aAAa,YAAY,CAAC,OAAe;AAC7C,kBAAc,CAAC,SAAS,KAAK,OAAO,CAAC,MAAM,EAAE,OAAO,EAAE,CAAC;AAAA,EACzD,GAAG,CAAC,CAAC;AAGL,QAAM,UAAUC,QAA0B,IAAI;AAC9C,MAAI,CAAC,QAAQ,SAAS;AACpB,YAAQ,UAAU,iBAAiB;AAAA,MACjC;AAAA,MACA;AAAA,MACA,iBAAiB,MAAM,IAAI,iBAAiB;AAAA,IAC9C,CAAC;AAAA,EACH;AACA,QAAM,OAAO,QAAQ;AAErB,QAAM,SAAS,QAAkB,MAAM;AAErC,aAAS,mBAAmB,MAKmE;AAC7F,YAAM,YAAY,IAAI,iBAAiB;AACvC,YAAM,SAAS,QAAQ,EAAE,WAAW;AAEpC,YAAM,UAAU,IAAI,QAAiD,CAAC,SAAS,WAAW;AAGxF,kBAAU,OAAO,KAAK,KAAK,EAAE,WAAW,MAAM,QAAQ,KAAK,OAAO,CAAC;AAEnE,gBAAQ,EAAE,IAAI,QAAQ,WAAW,QAAQ,KAAK,OAAO,CAAC;AAEtD,gCAAwB;AAAA,UACtB;AAAA,UACA,WAAW,KAAK;AAAA,UAChB,KAAK,KAAK;AAAA,UACV,WAAW;AAAA,UACX,QAAQ,KAAK;AAAA,UACb,kBAAkB,KAAK,oBAAoB;AAAA,QAC7C,CAAC,EACE,KAAK,CAAC,WAAW,QAAQ,EAAE,QAAQ,OAAO,CAAC,CAAC,EAC5C,MAAM,CAAC,MAAM;AACZ,qBAAW,MAAM;AACjB,iBAAO,CAAC;AAAA,QACV,CAAC;AAAA,MACL,CAAC;AAED,aAAO,EAAE,SAAS,UAAU;AAAA,IAC9B;AAGA,mBAAe,cACb,UAAgC,CAAC,GACgB;AACjD,YAAM,EAAE,YAAY,UAAU,IAAI,gBAAgB;AAClD,YAAM,YAAY,SAAS,KAAK,IAAI,CAAC;AAErC,YAAM,MAAM;AAAA,QACV,YAAY;AAAA,QACZ;AAAA,UACE;AAAA,UACA;AAAA,UACA;AAAA,UACA,GAAI,QAAQ,WAAW,EAAE,SAAS,KAAK;AAAA,QACzC;AAAA,QACA,EAAE,aAAa;AAAA,MACjB;AAEA,UAAI;AACF,cAAM,EAAE,QAAQ,IAAI,mBAAmB;AAAA,UACrC;AAAA,UACA;AAAA,UACA,QAAQ;AAAA,UACR,kBAAkB;AAAA,QACpB,CAAC;AAED,cAAM,EAAE,QAAQ,OAAO,IAAI,MAAM;AAEjC,eAAO,IAAI,QAAgD,CAAC,YAAY;AACtE,gBAAM,UAAU,WAAW,MAAM;AAC/B,mBAAO,QAAQ;AACf,uBAAW,MAAM;AACjB,oBAAQ,IAAI,EAAE,SAAS,2BAA2B,CAAC,CAAC;AAAA,UACtD,GAAG,GAAM;AAET,iBAAO,UAAU,CAAC,QAAyB;AACzC,gBAAI,IAAI,SAAS,SAAS;AACxB,2BAAa,OAAO;AACpB,qBAAO,QAAQ;AACf,yBAAW,MAAM;AACjB,oBAAM,UAAU,IAAI;AACpB,sBAAQ,IAAI,EAAE,SAAS,QAAQ,QAAQ,CAAC,CAAC;AACzC;AAAA,YACF;AAEA,gBAAI,IAAI,SAAS,YAAY;AAC3B,2BAAa,OAAO;AACpB,qBAAO,QAAQ;AACf,yBAAW,MAAM;AACjB,oBAAM,aAAa,IAAI;AAEvB,kBAAI,WAAW,WAAW,iBAAiB,QAAQ;AACjD,sBAAM,QAAQ,mBAAmB,WAAW,aAAa,UAAU;AACnE,qBAAK,QAAQ,eAAe,MAAM,WAAW;AAC7C,qBAAK,QAAQ,eAAe,MAAM,WAAW;AAAA,cAC/C;AAEA,sBAAQ,GAAG,UAAU,CAAC;AAAA,YACxB;AAAA,UACF,CAAC;AAAA,QACH,CAAC;AAAA,MACH,SAAS,GAAG;AACV,eAAO,IAAI;AAAA,UACT,SAAS,aAAa,QAAQ,EAAE,UAAU;AAAA,QAC5C,CAAC;AAAA,MACH;AAAA,IACF;AAGA,mBAAe,QAAQ,MAAmE;AACxF,YAAM,EAAE,YAAY,UAAU,IAAI,gBAAgB;AAClD,YAAM,YAAY,WAAW,KAAK,IAAI,CAAC;AAEvC,YAAM,MAAM;AAAA,QACV,YAAY;AAAA,QACZ;AAAA,UACE;AAAA,UACA;AAAA,UACA;AAAA,UACA,GAAI,KAAK,OAAO,cAAc,EAAE,YAAY,KAAK,MAAM,WAAW;AAAA,QACpE;AAAA,QACA,EAAE,aAAa;AAAA,MACjB;AAEA,UAAI;AACF,cAAM,EAAE,QAAQ,IAAI,mBAAmB,EAAE,KAAK,WAAW,QAAQ,MAAM,CAAC;AACxE,cAAM,EAAE,QAAQ,OAAO,IAAI,MAAM;AAEjC,eAAO,IAAI,QAA4C,CAAC,YAAY;AAClE,iBAAO,UAAU,CAAC,QAAyB;AACzC,gBAAI,IAAI,SAAS,SAAS;AACxB,mBAAK,UAAU,EAAE,MAAM,QAAQ,CAAC;AAChC;AAAA,YACF;AAEA,gBAAI,IAAI,SAAS,SAAS;AACxB,oBAAM,UAAU,IAAI;AACpB,mBAAK,UAAU,EAAE,MAAM,SAAS,QAAQ,CAAC;AACzC,qBAAO,QAAQ;AACf,yBAAW,MAAM;AACjB,sBAAQ,IAAI,EAAE,SAAS,mBAAmB,CAAC,CAAC;AAC5C;AAAA,YACF;AAEA,gBAAI,IAAI,SAAS,YAAY;AAC3B,oBAAM,aAAa,IAAI;AAEvB,kBAAI,WAAW,WAAW,iBAAiB,QAAQ;AACjD,sBAAM,QAAQ,mBAAmB,WAAW,aAAa,UAAU;AACnE,qBAAK,QAAQ,eAAe,MAAM,WAAW;AAC7C,qBAAK,QAAQ,eAAe,MAAM,WAAW;AAAA,cAC/C;AAEA,mBAAK,UAAU,EAAE,MAAM,YAAY,SAAS,WAAW,CAAC;AACxD;AAAA,gBACE,GAAG;AAAA,kBACD,SAAS,MAAM;AACb,2BAAO,QAAQ;AACf,+BAAW,MAAM;AAAA,kBACnB;AAAA,gBACF,CAAC;AAAA,cACH;AAAA,YACF;AAAA,UACF,CAAC;AAAA,QACH,CAAC;AAAA,MACH,SAAS,GAAG;AACV,eAAO,IAAI;AAAA,UACT,SAAS,aAAa,QAAQ,EAAE,UAAU;AAAA,QAC5C,CAAC;AAAA,MACH;AAAA,IACF;AAGA,mBAAe,UAAU,MAAoE;AAC3F,YAAM,cAAc,KAAK,QAAQ;AACjC,UAAI,CAAC,aAAa;AAChB,eAAO,IAAI;AAAA,UACT,MAAM;AAAA,UACN,SACE;AAAA,QACJ,CAAC;AAAA,MACH;AAEA,YAAM,EAAE,YAAY,UAAU,IAAI,gBAAgB;AAClD,YAAM,YAAY,QAAQ,KAAK,IAAI,CAAC;AAEpC,YAAM,MAAM;AAAA,QACV,YAAY;AAAA,QACZ,EAAE,aAAa,WAAW,UAAU;AAAA,QACpC,EAAE,aAAa;AAAA,MACjB;AAEA,UAAI;AACF,cAAM,EAAE,QAAQ,IAAI,mBAAmB,EAAE,KAAK,WAAW,QAAQ,MAAM,CAAC;AACxE,cAAM,EAAE,QAAQ,OAAO,IAAI,MAAM;AAEjC,eAAO,IAAI,QAA2C,CAAC,YAAY;AACjE,iBAAO,UAAU,CAAC,QAAyB;AACzC,gBAAI,IAAI,SAAS,SAAS;AACxB,mBAAK,UAAU,EAAE,MAAM,QAAQ,CAAC;AAChC;AAAA,YACF;AAEA,gBAAI,IAAI,SAAS,SAAS;AACxB,oBAAM,UAAU,IAAI;AACpB,mBAAK,UAAU,EAAE,MAAM,SAAS,QAAQ,CAAC;AACzC,qBAAO,QAAQ;AACf,yBAAW,MAAM;AACjB,sBAAQ,IAAI,EAAE,MAAM,gBAAgB,SAAS,mBAAmB,CAAC,CAAC;AAClE;AAAA,YACF;AAEA,gBAAI,IAAI,SAAS,YAAY;AAC3B,oBAAM,aAAa,IAAI;AAEvB,kBAAI,WAAW,WAAW,iBAAiB,QAAQ;AACjD,sBAAM,QAAQ,mBAAmB,WAAW,aAAa,UAAU;AACnE,qBAAK,QAAQ,eAAe,MAAM,WAAW;AAC7C,qBAAK,QAAQ,eAAe,MAAM,WAAW;AAAA,cAC/C;AAEA,kBACE,WAAW,WAAW,iBAAiB,UACvC,WAAW,WAAW,iBAAiB,yBACvC;AACA,qBAAK,UAAU,EAAE,MAAM,YAAY,SAAS,WAAW,CAAC;AAAA,cAC1D;AACA;AAAA,gBACE,GAAG;AAAA,kBACD,SAAS,MAAM;AACb,2BAAO,QAAQ;AACf,+BAAW,MAAM;AAAA,kBACnB;AAAA,gBACF,CAAC;AAAA,cACH;AAAA,YACF;AAAA,UACF,CAAC;AAAA,QACH,CAAC;AAAA,MACH,SAAS,GAAG;AACV,eAAO,IAAI;AAAA,UACT,MAAM;AAAA,UACN,SAAS,aAAa,QAAQ,EAAE,UAAU;AAAA,QAC5C,CAAC;AAAA,MACH;AAAA,IACF;AAGA,mBAAe,YACb,MACgD;AAChD,YAAM,YAAY,UAAU,KAAK,IAAI,CAAC;AAEtC,YAAM,MAAM;AAAA,QACV,YAAY;AAAA,QACZ;AAAA,UACE,MAAM;AAAA,UACN,aAAa,KAAK,QAAQ;AAAA,UAC1B,gBAAgB,KAAK;AAAA,UACrB;AAAA,QACF;AAAA,QACA,EAAE,aAAa;AAAA,MACjB;AAEA,UAAI;AACF,cAAM,EAAE,QAAQ,IAAI,mBAAmB,EAAE,KAAK,WAAW,QAAQ,MAAM,CAAC;AACxE,cAAM,EAAE,QAAQ,OAAO,IAAI,MAAM;AAEjC,eAAO,UAAU,CAAC,QAAyB;AACzC,kBAAQ,IAAI,MAAM;AAAA,YAChB,KAAK;AACH,mBAAK,UAAU,EAAE,MAAM,QAAQ,CAAC;AAChC;AAAA,YACF,KAAK;AACH,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,IAAI;AAAA,cACf,CAAC;AACD;AAAA,YACF,KAAK;AACH,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,IAAI;AAAA,cAGf,CAAC;AACD;AAAA,YACF,KAAK,SAAS;AACZ,oBAAM,UAAU,IAAI;AAIpB,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,EAAE,MAAM,QAAQ,MAAM,SAAS,QAAQ,QAAQ;AAAA,cAC1D,CAAC;AACD;AAAA,YACF;AAAA,YACA,KAAK;AACH,mBAAK,UAAU,EAAE,MAAM,QAAQ,CAAC;AAChC;AAAA,UACJ;AAAA,QACF,CAAC;AAED,eAAO,GAAG;AAAA,UACR,SAAS,MAAM;AACb,mBAAO,QAAQ;AACf,uBAAW,MAAM;AAAA,UACnB;AAAA,QACF,CAAC;AAAA,MACH,SAAS,GAAG;AACV,eAAO,IAAI;AAAA,UACT,MAAM;AAAA,UACN,SAAS,aAAa,QAAQ,EAAE,UAAU;AAAA,QAC5C,CAAC;AAAA,MACH;AAAA,IACF;AAGA,mBAAe,cACb,MACoD;AACpD,YAAM,YAAY,YAAY,KAAK,IAAI,CAAC;AAExC,YAAM,MAAM;AAAA,QACV,YAAY;AAAA,QACZ;AAAA,UACE,aAAa,KAAK,QAAQ;AAAA,UAC1B,WAAW,KAAK;AAAA,UAChB;AAAA,QACF;AAAA,QACA,EAAE,aAAa;AAAA,MACjB;AAEA,UAAI;AACF,cAAM,EAAE,QAAQ,IAAI,mBAAmB,EAAE,KAAK,WAAW,QAAQ,MAAM,CAAC;AACxE,cAAM,EAAE,QAAQ,OAAO,IAAI,MAAM;AAEjC,cAAM,WAAW,CAAC,cAAsB;AACtC,iBAAO,YAAY;AAAA,YACjB,SAAS;AAAA,YACT,MAAM,EAAE,UAAU;AAAA,YAClB,MAAM;AAAA,YACN,SAAS,EAAE,OAAO,EAAE,UAAU,EAAE;AAAA,UAClC,CAAC;AAAA,QACH;AAEA,eAAO,UAAU,CAAC,QAAyB;AACzC,kBAAQ,IAAI,MAAM;AAAA,YAChB,KAAK;AACH,mBAAK,UAAU,EAAE,MAAM,QAAQ,CAAC;AAChC;AAAA,YACF,KAAK;AACH,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,IAAI;AAAA,cAGf,CAAC;AACD;AAAA,YACF,KAAK,SAAS;AACZ,oBAAM,UAAU,IAAI;AACpB,kBAAI,QAAQ,SAAS,gBAAgB;AACnC,qBAAK,UAAU,EAAE,MAAM,gBAAgB,SAAS,EAAE,SAAS,EAAE,CAAC;AAAA,cAChE,WAAW,QAAQ,SAAS,uBAAuB;AACjD,qBAAK,UAAU,EAAE,MAAM,cAAc,CAAC;AAAA,cACxC,OAAO;AACL,sBAAM,OACJ,QAAQ,SAAS,YACb,iBACC,QAAQ;AAKf,qBAAK,UAAU;AAAA,kBACb,MAAM;AAAA,kBACN,SAAS,EAAE,MAAM,SAAS,QAAQ,QAAQ;AAAA,gBAC5C,CAAC;AAAA,cACH;AACA;AAAA,YACF;AAAA,UACF;AAAA,QACF,CAAC;AAED,eAAO,GAAG;AAAA,UACR;AAAA,UACA,SAAS,MAAM;AACb,mBAAO,QAAQ;AACf,uBAAW,MAAM;AAAA,UACnB;AAAA,QACF,CAAC;AAAA,MACH,SAAS,GAAG;AACV,eAAO,IAAI;AAAA,UACT,MAAM;AAAA,UACN,SAAS,aAAa,QAAQ,EAAE,UAAU;AAAA,QAC5C,CAAC;AAAA,MACH;AAAA,IACF;AAGA,mBAAe,SAAS,MAAiE;AACvF,YAAM,YAAY,OAAO,KAAK,IAAI,CAAC;AAEnC,YAAM,MAAM;AAAA,QACV,YAAY;AAAA,QACZ;AAAA,UACE;AAAA,UACA,aAAa,KAAK,QAAQ;AAAA,UAC1B,WAAW,KAAK;AAAA,UAChB,GAAI,KAAK,yBAAyB,EAAE,uBAAuB,KAAK,sBAAsB;AAAA,QACxF;AAAA,QACA,EAAE,aAAa;AAAA,MACjB;AAEA,UAAI;AACF,cAAM,EAAE,QAAQ,IAAI,mBAAmB,EAAE,KAAK,WAAW,QAAQ,KAAK,CAAC;AACvE,cAAM,EAAE,QAAQ,OAAO,IAAI,MAAM;AAEjC,cAAM,WAAW,CAAC,cAAsB;AACtC,iBAAO,YAAY;AAAA,YACjB,SAAS;AAAA,YACT,MAAM,EAAE,UAAU;AAAA,YAClB,MAAM;AAAA,YACN,SAAS,EAAE,OAAO,EAAE,UAAU,EAAE;AAAA,UAClC,CAAC;AAAA,QACH;AAEA,eAAO,UAAU,CAAC,QAAyB;AACzC,kBAAQ,IAAI,MAAM;AAAA,YAChB,KAAK;AACH,mBAAK,UAAU,EAAE,MAAM,QAAQ,CAAC;AAChC;AAAA,YACF,KAAK;AACH,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,IAAI;AAAA,cAGf,CAAC;AACD;AAAA,YACF,KAAK;AACH,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,IAAI;AAAA,cACf,CAAC;AACD;AAAA,YACF,KAAK;AACH,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,IAAI;AAAA,cACf,CAAC;AACD;AAAA,UACJ;AAAA,QACF,CAAC;AAED,eAAO,GAAG;AAAA,UACR;AAAA,UACA,SAAS,MAAM;AACb,mBAAO,QAAQ;AACf,uBAAW,MAAM;AAAA,UACnB;AAAA,QACF,CAAC;AAAA,MACH,SAAS,GAAG;AACV,eAAO,IAAI;AAAA,UACT,MAAM;AAAA,UACN,SAAS,aAAa,QAAQ,EAAE,UAAU;AAAA,QAC5C,CAAC;AAAA,MACH;AAAA,IACF;AAGA,mBAAe,eACb,MACsD;AACtD,YAAM,YAAY,cAAc,KAAK,IAAI,CAAC;AAE1C,YAAM,MAAM;AAAA,QACV,YAAY;AAAA,QACZ;AAAA,UACE;AAAA,UACA,aAAa,KAAK,QAAQ;AAAA,UAC1B,WAAW,KAAK;AAAA,QAClB;AAAA,QACA,EAAE,aAAa;AAAA,MACjB;AAEA,UAAI;AACF,cAAM,EAAE,QAAQ,IAAI,mBAAmB,EAAE,KAAK,WAAW,QAAQ,MAAM,CAAC;AACxE,cAAM,EAAE,QAAQ,OAAO,IAAI,MAAM;AAEjC,cAAM,WAAW,CAAC,cAAsB;AACtC,iBAAO,YAAY;AAAA,YACjB,SAAS;AAAA,YACT,MAAM,EAAE,UAAU;AAAA,YAClB,MAAM;AAAA,YACN,SAAS,EAAE,OAAO,EAAE,UAAU,EAAE;AAAA,UAClC,CAAC;AAAA,QACH;AAEA,eAAO,UAAU,CAAC,QAAyB;AACzC,kBAAQ,IAAI,MAAM;AAAA,YAChB,KAAK;AACH,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,IAAI;AAAA,cAGf,CAAC;AACD;AAAA,YACF,KAAK;AACH,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,IAAI;AAAA,cACf,CAAC;AACD;AAAA,YACF,KAAK;AACH,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,IAAI;AAAA,cACf,CAAC;AACD;AAAA,UACJ;AAAA,QACF,CAAC;AAED,eAAO,GAAG;AAAA,UACR;AAAA,UACA,SAAS,MAAM;AACb,mBAAO,QAAQ;AACf,uBAAW,MAAM;AAAA,UACnB;AAAA,QACF,CAAC;AAAA,MACH,SAAS,GAAG;AACV,eAAO,IAAI;AAAA,UACT,MAAM;AAAA,UACN,SAAS,aAAa,QAAQ,EAAE,UAAU;AAAA,QAC5C,CAAC;AAAA,MACH;AAAA,IACF;AAGA,mBAAe,eACb,MACsD;AACtD,YAAM,YAAY,aAAa,KAAK,IAAI,CAAC;AAEzC,YAAM,MAAM;AAAA,QACV,YAAY;AAAA,QACZ;AAAA,UACE,aAAa,KAAK,QAAQ;AAAA,UAC1B,WAAW,KAAK;AAAA,UAChB;AAAA,UACA,GAAI,KAAK,yBAAyB,EAAE,uBAAuB,KAAK,sBAAsB;AAAA,QACxF;AAAA,QACA,EAAE,aAAa;AAAA,MACjB;AAEA,UAAI;AACF,cAAM,EAAE,QAAQ,IAAI,mBAAmB,EAAE,KAAK,WAAW,QAAQ,MAAM,CAAC;AACxE,cAAM,EAAE,QAAQ,OAAO,IAAI,MAAM;AAEjC,cAAM,WAAW,CAAC,cAAsB;AACtC,iBAAO,YAAY;AAAA,YACjB,SAAS;AAAA,YACT,MAAM,EAAE,UAAU;AAAA,YAClB,MAAM;AAAA,YACN,SAAS,EAAE,OAAO,EAAE,UAAU,EAAE;AAAA,UAClC,CAAC;AAAA,QACH;AAEA,eAAO,UAAU,CAAC,QAAyB;AACzC,kBAAQ,IAAI,MAAM;AAAA,YAChB,KAAK;AACH,mBAAK,UAAU,EAAE,MAAM,QAAQ,CAAC;AAChC;AAAA,YACF,KAAK;AACH,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,IAAI;AAAA,cAGf,CAAC;AACD;AAAA,YACF,KAAK;AACH,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,IAAI;AAAA,cACf,CAAC;AACD;AAAA,YACF,KAAK,SAAS;AACZ,oBAAM,UAAU,IAAI;AACpB,kBAAI,QAAQ,SAAS,gBAAgB;AACnC,qBAAK,UAAU,EAAE,MAAM,gBAAgB,SAAS,EAAE,SAAS,EAAE,CAAC;AAAA,cAChE,WAAW,QAAQ,SAAS,wBAAwB;AAClD,qBAAK,UAAU,EAAE,MAAM,cAAc,CAAC;AAAA,cACxC,OAAO;AACL,sBAAM,OACJ,QAAQ,SAAS,YACb,iBACC,QAAQ;AACf,qBAAK,UAAU;AAAA,kBACb,MAAM;AAAA,kBACN,SAAS,EAAE,MAAM,SAAS,QAAQ,QAAQ;AAAA,gBAC5C,CAAC;AAAA,cACH;AACA;AAAA,YACF;AAAA,UACF;AAAA,QACF,CAAC;AAED,eAAO,GAAG;AAAA,UACR;AAAA,UACA,SAAS,MAAM;AACb,mBAAO,QAAQ;AACf,uBAAW,MAAM;AAAA,UACnB;AAAA,QACF,CAAC;AAAA,MACH,SAAS,GAAG;AACV,eAAO,IAAI;AAAA,UACT,MAAM;AAAA,UACN,SAAS,aAAa,QAAQ,EAAE,UAAU;AAAA,QAC5C,CAAC;AAAA,MACH;AAAA,IACF;AAGA,mBAAe,eACb,MACsD;AACtD,UAAI;AACJ,UAAI;AACF,cAAM,IAAI,IAAI,KAAK,GAAG;AAAA,MACxB,QAAQ;AACN,eAAO,IAAI,EAAE,MAAM,sBAAsB,SAAS,wBAAwB,CAAC;AAAA,MAC7E;AAEA,UAAI,YAAY,IAAI,aAAa,IAAI,WAAW,KAAK;AACrD,UAAI,CAAC,WAAW;AACd,oBAAY,aAAa,KAAK,IAAI,CAAC;AACnC,YAAI,aAAa,IAAI,aAAa,SAAS;AAAA,MAC7C;AAEA,UAAI;AACF,cAAM,EAAE,QAAQ,IAAI,mBAAmB;AAAA,UACrC,KAAK,IAAI,SAAS;AAAA,UAClB;AAAA,UACA,QAAQ;AAAA,QACV,CAAC;AACD,cAAM,EAAE,QAAQ,OAAO,IAAI,MAAM;AAEjC,eAAO,UAAU,CAAC,QAAyB;AACzC,kBAAQ,IAAI,MAAM;AAAA,YAChB,KAAK;AACH,mBAAK,UAAU,EAAE,MAAM,QAAQ,CAAC;AAChC;AAAA,YACF,KAAK;AACH,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,IAAI;AAAA,cACf,CAAC;AACD;AAAA,YACF,KAAK;AACH,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,IAAI;AAAA,cACf,CAAC;AACD;AAAA,YACF,KAAK;AACH,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,IAAI;AAAA,cACf,CAAC;AACD;AAAA,UACJ;AAAA,QACF,CAAC;AAED,eAAO,GAAG;AAAA,UACR,SAAS,MAAM;AACb,mBAAO,QAAQ;AACf,uBAAW,MAAM;AAAA,UACnB;AAAA,QACF,CAAC;AAAA,MACH,SAAS,GAAG;AACV,eAAO,IAAI;AAAA,UACT,MAAM;AAAA,UACN,SAAS,aAAa,QAAQ,EAAE,UAAU;AAAA,QAC5C,CAAC;AAAA,MACH;AAAA,IACF;AAGA,mBAAe,aACb,MACkD;AAClD,YAAM,YAAY,YAAY,KAAK,IAAI,CAAC;AAExC,YAAM,MAAM;AAAA,QACV,YAAY;AAAA,QACZ,EAAE,WAAW,aAAa,KAAK,QAAQ,YAAY;AAAA,QACnD,EAAE,aAAa;AAAA,MACjB;AAEA,UAAI;AACF,cAAM,EAAE,QAAQ,IAAI,mBAAmB,EAAE,KAAK,WAAW,QAAQ,MAAM,CAAC;AACxE,cAAM,EAAE,QAAQ,OAAO,IAAI,MAAM;AAEjC,eAAO,UAAU,CAAC,QAAyB;AACzC,kBAAQ,IAAI,MAAM;AAAA,YAChB,KAAK;AACH,mBAAK,UAAU,EAAE,MAAM,YAAY,SAAS,IAAI,QAAkC,CAAC;AACnF;AAAA,YACF,KAAK;AACH,mBAAK,UAAU;AAAA,gBACb,MAAM;AAAA,gBACN,SAAS,IAAI;AAAA,cAIf,CAAC;AACD;AAAA,UACJ;AAAA,QACF,CAAC;AAED,eAAO,GAAG;AAAA,UACR,SAAS,MAAM;AACb,mBAAO,QAAQ;AACf,uBAAW,MAAM;AAAA,UACnB;AAAA,QACF,CAAC;AAAA,MACH,SAAS,GAAG;AACV,eAAO,IAAI;AAAA,UACT,MAAM;AAAA,UACN,SAAS,aAAa,QAAQ,EAAE,UAAU;AAAA,QAC5C,CAAC;AAAA,MACH;AAAA,IACF;AAEA,WAAO;AAAA,MACL;AAAA,MACA;AAAA,MACA;AAAA,MACA,mBAAmB,MAAM,KAAK,kBAAkB;AAAA,MAChD,UAAU,CAAC,WAAW,KAAK,SAAS,MAAM;AAAA,MAC1C,kBAAkB,CAAC,WAAW,KAAK,iBAAiB,MAAM;AAAA,MAC1D,gBAAgB,CAAC,OAAO,KAAK,eAAe,EAAE;AAAA,MAC9C;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MAEA,gBAAgB,CAAC,SAAS,KAAK,eAAe,IAAI;AAAA,MAClD,aAAa,CAAC,OAAO,KAAK,YAAY,EAAE;AAAA,MACxC,gBAAgB,CAAC,IAAI,SAAS,KAAK,eAAe,IAAI,IAAI;AAAA,MAC1D,gBAAgB,CAAC,OAAO,KAAK,eAAe,EAAE;AAAA,MAC9C,sBAAsB,CAAC,IAAI,SAAS,KAAK,qBAAqB,IAAI,IAAI;AAAA,MACtE,qBAAqB,CAAC,IAAI,SAAS,KAAK,oBAAoB,IAAI,IAAI;AAAA,IACtE;AAAA,EACF,GAAG,CAAC,cAAc,cAAc,MAAM,SAAS,UAAU,CAAC;AAE1D,SACE,qBAAC,eAAe,UAAf,EAAwB,OAAO,EAAE,OAAO,GACtC;AAAA;AAAA,IACA,WAAW,IAAI,CAAC,SACf,gBAAAD,KAAC,gBAA2B,WAAW,KAAK,WAAW,QAAQ,KAAK,UAAjD,KAAK,EAAoD,CAC7E;AAAA,KACH;AAEJ;AAMO,SAAS,aAAkC;AAChD,QAAM,MAAM,WAAW,cAAc;AACrC,MAAI,CAAC,KAAK;AACR,UAAM,IAAI,MAAM,oDAAoD;AAAA,EACtE;AACA,SAAO;AACT;","names":["useRef","jsx","useRef"]}
|
|
1
|
+
{"version":3,"sources":["../src/frame-component.tsx","../src/provider.tsx","../src/webview-transport.ts"],"sourcesContent":["import { useEffect, useRef } from 'react';\nimport { View, type ViewStyle } from 'react-native';\nimport WebView, { type WebViewMessageEvent } from 'react-native-webview';\nimport type { WebViewTransport } from './webview-transport.js';\n\nexport interface MoonPayFrameProps {\n /** The transport instance managing this frame's communication. */\n transport: WebViewTransport;\n /** Whether this is a hidden utility frame (zero height). */\n hidden?: boolean;\n /** Optional style overrides for the container view. */\n style?: ViewStyle;\n}\n\n/**\n * Reusable React Native component that renders a MoonPay frame as a WebView.\n * Bridges the WebViewTransport to the actual WebView instance.\n */\nexport function MoonPayFrame({ transport, hidden, style }: MoonPayFrameProps): JSX.Element | null {\n const webViewRef = useRef<WebView>(null);\n\n useEffect(() => {\n transport.attachWebView(webViewRef);\n return () => {\n // Don't dispose — the orchestrator manages lifecycle\n };\n }, [transport]);\n\n const url = transport.url;\n if (!url) return null;\n\n const handleMessage = (event: WebViewMessageEvent) => {\n transport.handleWebViewMessage(event.nativeEvent.data);\n };\n\n const containerStyle: ViewStyle = hidden\n ? { width: 0, height: 0, overflow: 'hidden' }\n : { flex: 1, ...style };\n\n return (\n <View style={containerStyle}>\n <WebView\n ref={webViewRef}\n source={{ uri: url }}\n onMessage={handleMessage}\n allowsInlineMediaPlayback\n javaScriptEnabled\n domStorageEnabled\n style={{ flex: 1 }}\n />\n </View>\n );\n}\n","import {\n type AddCardEvent,\n type ApplePayEvent,\n type AuthEvent,\n type BuyButtonEvent,\n type BuyEvent,\n type CardResponse,\n type ChallengeCancellation,\n type ChallengeCompleteResult,\n type ChallengeEvent,\n type ConnectError,\n type ConnectEvent,\n type Connection,\n ConnectionStatus,\n type CreateIdentityError,\n type CreateIdentityRequestBody,\n type DevPlatformApiError,\n err,\n type GetConnectionError,\n type GetIdentityError,\n type GetIdentityUploadUrlError,\n type GetPaymentMethodsError,\n type GetQuoteError,\n type GetQuoteParams,\n type GetTransactionsError,\n type GooglePayEvent,\n type GooglePayInboundMessageMap,\n type Identity,\n type IdentityFileUploadUrl,\n type IdentityFileUploadUrlRequestBody,\n type IdentityVerificationResponse,\n type ListPaymentMethodsResponse,\n ok,\n type PaginationInfo,\n type ProtocolMessage,\n type Quote,\n type ResetConnectionError,\n type Result,\n type SetupAddCardError,\n type SetupApplePayError,\n type SetupAuthError,\n type SetupBuyButtonError,\n type SetupBuyError,\n type SetupChallengeError,\n type SetupGooglePayError,\n type SetupWidgetError,\n type SubmitIdentityFilesError,\n type SubmitIdentityFilesRequestBody,\n type Transaction,\n type TransactionWithStages,\n type UpdateIdentityError,\n type UpdateIdentityRequestBody,\n type VerifyIdentityError,\n type WidgetEvent,\n} from '@moonpay/platform-protocol';\nimport {\n buildFrameUrl,\n type CoreClient,\n createClientCore,\n createFrameOrchestrator,\n decryptCredentials,\n FRAME_PATHS,\n type FrameHandle,\n generateKeyPair,\n type ListTransactionsParams,\n} from '@moonpay/platform-sdk-core';\nimport {\n createContext,\n type ReactNode,\n useCallback,\n useContext,\n useMemo,\n useRef,\n useState,\n} from 'react';\nimport { MoonPayFrame } from './frame-component.js';\nimport { WebViewTransport } from './webview-transport.js';\n\n// ---------------------------------------------------------------------------\n// Frame slot — represents a frame the provider needs to render\n// ---------------------------------------------------------------------------\n\ninterface FrameSlot {\n id: string;\n transport: WebViewTransport;\n hidden: boolean;\n}\n\n// ---------------------------------------------------------------------------\n// Public types\n// ---------------------------------------------------------------------------\n\nexport interface GetConnectionOptions {\n /**\n * Pass `true` for headless / Identity-API integrations so the check\n * frame opts out of KYC-based statuses. Legal (`termsAcceptanceRequired`)\n * is always surfaced regardless. Defaults to `false`.\n */\n skipKyc?: boolean;\n}\n\nexport interface ConnectOptions {\n /** Theme options for the connect frame. */\n theme?: { appearance?: 'light' | 'dark' };\n /** Callback for connect lifecycle events. */\n onEvent?: (event: ConnectEvent) => void;\n}\n\nexport interface ConnectFrame {\n dispose(): void;\n}\n\nexport interface SetupWidgetOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Callback for widget lifecycle events. */\n onEvent?: (event: WidgetEvent) => void;\n}\n\nexport interface WidgetFrame {\n dispose(): void;\n}\n\nexport interface SetupApplePayOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Callback for Apple Pay lifecycle events. */\n onEvent?: (event: ApplePayEvent) => void;\n}\n\nexport interface ApplePayFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupBuyOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Partner-assigned identifier for this transaction attempt. */\n externalTransactionId?: string;\n /** Callback for buy frame lifecycle events. */\n onEvent?: (event: BuyEvent) => void;\n}\n\nexport interface BuyFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupBuyButtonOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Callback for buy-button frame lifecycle events. */\n onEvent?: (event: BuyButtonEvent) => void;\n}\n\nexport interface BuyButtonFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupGooglePayOptions {\n /** Quote signature from getQuote(). */\n quote: string;\n /** Partner-assigned identifier for this transaction attempt. */\n externalTransactionId?: string;\n /** Callback for Google Pay lifecycle events. */\n onEvent?: (event: GooglePayEvent) => void;\n}\n\nexport interface GooglePayFrame {\n /** Update the quote (e.g., after expiry). */\n setQuote(signature: string): void;\n dispose(): void;\n}\n\nexport interface SetupChallengeOptions {\n /** Full challenge URL received from a frame's `challenge` event. */\n url: string;\n /** Callback for challenge frame lifecycle events. */\n onEvent?: (event: ChallengeEvent) => void;\n}\n\nexport interface ChallengeFrame {\n dispose(): void;\n}\n\nexport interface SetupAddCardOptions {\n /** Callback for add-card frame lifecycle events. */\n onEvent?: (event: AddCardEvent) => void;\n}\n\nexport interface AddCardFrame {\n dispose(): void;\n}\n\nexport interface SetupAuthOptions {\n /** Callback for auth frame lifecycle events. */\n onEvent?: (event: AuthEvent) => void;\n}\n\nexport interface AuthFrame {\n dispose(): void;\n}\n\nexport interface RNClient {\n getConnection(options?: GetConnectionOptions): Promise<Result<Connection, GetConnectionError>>;\n connect(options: ConnectOptions): Promise<Result<ConnectFrame, ConnectError>>;\n /**\n * Launch the auth frame — the lighter-weight counterpart to `connect()`\n * for headless / Identity-API partners. Requires a `clientToken` to be\n * present in the client's context, which is populated automatically by a\n * prior `getConnection()` call that returned `connectionRequired`.\n * Call `getConnection()` first; if its status is `connectionRequired`,\n * call `setupAuth()` to drive the customer through email/OTP.\n */\n setupAuth(options: SetupAuthOptions): Promise<Result<AuthFrame, SetupAuthError>>;\n getPaymentMethods(): Promise<Result<ListPaymentMethodsResponse, GetPaymentMethodsError>>;\n getQuote(params: GetQuoteParams): Promise<Result<{ data: Quote }, GetQuoteError>>;\n listTransactions(\n params?: ListTransactionsParams,\n ): Promise<Result<{ data: Transaction[]; pageInfo: PaginationInfo }, GetTransactionsError>>;\n getTransaction(\n id: string,\n ): Promise<Result<{ data: TransactionWithStages }, GetTransactionsError>>;\n setupWidget(options: SetupWidgetOptions): Promise<Result<WidgetFrame, SetupWidgetError>>;\n setupApplePay(options: SetupApplePayOptions): Promise<Result<ApplePayFrame, SetupApplePayError>>;\n setupBuy(options: SetupBuyOptions): Promise<Result<BuyFrame, SetupBuyError>>;\n setupBuyButton(\n options: SetupBuyButtonOptions,\n ): Promise<Result<BuyButtonFrame, SetupBuyButtonError>>;\n setupGooglePay(\n options: SetupGooglePayOptions,\n ): Promise<Result<GooglePayFrame, SetupGooglePayError>>;\n deletePaymentMethod(id: string): Promise<Result<void, DevPlatformApiError>>;\n /**\n * Clears the customer's MoonPay connection for this partner by running the\n * reset frame. Resolves when the reset completes or times out (5s).\n * Call this after clearing your own local auth state (the client reference\n * can be captured before disposal since the session token is baked in).\n */\n resetConnection(): Promise<Result<void, ResetConnectionError>>;\n setupChallenge(\n options: SetupChallengeOptions,\n ): Promise<Result<ChallengeFrame, SetupChallengeError>>;\n setupAddCard(options: SetupAddCardOptions): Promise<Result<AddCardFrame, SetupAddCardError>>;\n\n // Identity API\n createIdentity(\n body: CreateIdentityRequestBody,\n ): Promise<Result<{ data: Identity | null }, CreateIdentityError>>;\n getIdentity(id: string): Promise<Result<{ data: Identity }, GetIdentityError>>;\n updateIdentity(\n id: string,\n body: UpdateIdentityRequestBody,\n ): Promise<Result<{ data: Identity }, UpdateIdentityError>>;\n verifyIdentity(\n id: string,\n ): Promise<Result<{ data: IdentityVerificationResponse }, VerifyIdentityError>>;\n getIdentityUploadUrl(\n id: string,\n body: IdentityFileUploadUrlRequestBody,\n ): Promise<Result<{ data: IdentityFileUploadUrl }, GetIdentityUploadUrlError>>;\n submitIdentityFiles(\n id: string,\n body: SubmitIdentityFilesRequestBody,\n ): Promise<Result<{ data: Identity }, SubmitIdentityFilesError>>;\n}\n\n// ---------------------------------------------------------------------------\n// Context\n// ---------------------------------------------------------------------------\n\ninterface MoonPayContextValue {\n client: RNClient;\n}\n\nconst MoonPayContext = createContext<MoonPayContextValue | null>(null);\n\n// ---------------------------------------------------------------------------\n// Provider\n// ---------------------------------------------------------------------------\n\nexport interface MoonPayProviderProps {\n sessionToken: string;\n apiBaseUrl?: string;\n frameBaseUrl?: string;\n children: ReactNode;\n}\n\nlet slotCounter = 0;\n\nexport function MoonPayProvider({\n sessionToken,\n apiBaseUrl,\n frameBaseUrl,\n children,\n}: MoonPayProviderProps): JSX.Element {\n const [frameSlots, setFrameSlots] = useState<FrameSlot[]>([]);\n\n // Stable refs for addSlot/removeSlot so client methods don't re-create\n const addSlot = useCallback((slot: FrameSlot) => {\n setFrameSlots((prev) => [...prev, slot]);\n }, []);\n\n const removeSlot = useCallback((id: string) => {\n setFrameSlots((prev) => prev.filter((s) => s.id !== id));\n }, []);\n\n // Keep a ref to core so it's stable across renders\n const coreRef = useRef<CoreClient | null>(null);\n if (!coreRef.current) {\n coreRef.current = createClientCore({\n apiBaseUrl,\n frameBaseUrl,\n createTransport: () => new WebViewTransport(),\n });\n }\n const core = coreRef.current;\n\n const client = useMemo<RNClient>(() => {\n // Helper: create a transport + slot, wait for orchestrator handshake\n function createManagedFrame(opts: {\n url: string;\n channelId: string;\n hidden: boolean;\n handshakeTimeout?: number;\n }): { promise: Promise<{ handle: FrameHandle; slotId: string }>; transport: WebViewTransport } {\n const transport = new WebViewTransport();\n const slotId = `slot-${++slotCounter}`;\n\n const promise = new Promise<{ handle: FrameHandle; slotId: string }>((resolve, reject) => {\n // Defer adding the slot to allow the transport to be fully set up\n // before the WebView renders\n transport.create(opts.url, { container: null, hidden: opts.hidden });\n\n addSlot({ id: slotId, transport, hidden: opts.hidden });\n\n createFrameOrchestrator({\n transport,\n channelId: opts.channelId,\n url: opts.url,\n container: null,\n hidden: opts.hidden,\n handshakeTimeout: opts.handshakeTimeout ?? 15_000,\n })\n .then((handle) => resolve({ handle, slotId }))\n .catch((e) => {\n removeSlot(slotId);\n reject(e);\n });\n });\n\n return { promise, transport };\n }\n\n // ------- getConnection (hidden frame) -------\n async function getConnection(\n options: GetConnectionOptions = {},\n ): Promise<Result<Connection, GetConnectionError>> {\n const { privateKey, publicKey } = generateKeyPair();\n const channelId = `check-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.checkConnection,\n {\n sessionToken,\n channelId,\n publicKey,\n ...(options.skipKyc && { skipKyc: true }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({\n url,\n channelId,\n hidden: true,\n handshakeTimeout: 10_000,\n });\n\n const { handle, slotId } = await promise;\n\n return new Promise<Result<Connection, GetConnectionError>>((resolve) => {\n const timeout = setTimeout(() => {\n handle.dispose();\n removeSlot(slotId);\n resolve(err({ message: 'Get connection timed out' }));\n }, 10_000);\n\n handle.onMessage((msg: ProtocolMessage) => {\n if (msg.kind === 'error') {\n clearTimeout(timeout);\n handle.dispose();\n removeSlot(slotId);\n const payload = msg.payload as { message: string };\n resolve(err({ message: payload.message }));\n return;\n }\n\n if (msg.kind === 'complete') {\n clearTimeout(timeout);\n handle.dispose();\n removeSlot(slotId);\n const connection = msg.payload as Connection;\n\n if (connection.status === ConnectionStatus.active) {\n const creds = decryptCredentials(connection.credentials, privateKey);\n core.context.setAccessToken(creds.accessToken);\n core.context.setClientToken(creds.clientToken);\n }\n\n resolve(ok(connection));\n }\n });\n });\n } catch (e) {\n return err({\n message: e instanceof Error ? e.message : 'Failed to check connection',\n });\n }\n }\n\n // ------- connect (visible frame) -------\n async function connect(opts: ConnectOptions): Promise<Result<ConnectFrame, ConnectError>> {\n const { privateKey, publicKey } = generateKeyPair();\n const channelId = `connect-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.connect,\n {\n sessionToken,\n channelId,\n publicKey,\n ...(opts.theme?.appearance && { appearance: opts.theme.appearance }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n return new Promise<Result<ConnectFrame, ConnectError>>((resolve) => {\n handle.onMessage((msg: ProtocolMessage) => {\n if (msg.kind === 'ready') {\n opts.onEvent?.({ kind: 'ready' });\n return;\n }\n\n if (msg.kind === 'error') {\n const payload = msg.payload as import('@moonpay/platform-protocol').ConnectionError;\n opts.onEvent?.({ kind: 'error', payload });\n handle.dispose();\n removeSlot(slotId);\n resolve(err({ message: 'Connection error' }));\n return;\n }\n\n if (msg.kind === 'complete') {\n const connection = msg.payload as Connection;\n\n if (connection.status === ConnectionStatus.active) {\n const creds = decryptCredentials(connection.credentials, privateKey);\n core.context.setAccessToken(creds.accessToken);\n core.context.setClientToken(creds.clientToken);\n }\n\n opts.onEvent?.({ kind: 'complete', payload: connection });\n resolve(\n ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n }),\n );\n }\n });\n });\n } catch (e) {\n return err({\n message: e instanceof Error ? e.message : 'Connect failed',\n });\n }\n }\n\n // ------- setupAuth (visible frame) -------\n async function setupAuth(opts: SetupAuthOptions): Promise<Result<AuthFrame, SetupAuthError>> {\n const clientToken = core.context.clientToken;\n if (!clientToken) {\n return err({\n kind: 'configurationError',\n message:\n 'No clientToken in context — call getConnection() first and ensure it resolved with status \"connectionRequired\".',\n });\n }\n\n const { privateKey, publicKey } = generateKeyPair();\n const channelId = `auth-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.auth,\n { clientToken, channelId, publicKey },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n return new Promise<Result<AuthFrame, SetupAuthError>>((resolve) => {\n handle.onMessage((msg: ProtocolMessage) => {\n if (msg.kind === 'ready') {\n opts.onEvent?.({ kind: 'ready' });\n return;\n }\n\n if (msg.kind === 'error') {\n const payload = msg.payload as import('@moonpay/platform-protocol').ConnectionError;\n opts.onEvent?.({ kind: 'error', payload });\n handle.dispose();\n removeSlot(slotId);\n resolve(err({ kind: 'genericError', message: 'Auth frame error' }));\n return;\n }\n\n if (msg.kind === 'complete') {\n const connection = msg.payload as Connection;\n\n if (connection.status === ConnectionStatus.active) {\n const creds = decryptCredentials(connection.credentials, privateKey);\n core.context.setAccessToken(creds.accessToken);\n core.context.setClientToken(creds.clientToken);\n }\n\n if (\n connection.status === ConnectionStatus.active ||\n connection.status === ConnectionStatus.termsAcceptanceRequired\n ) {\n opts.onEvent?.({ kind: 'complete', payload: connection });\n }\n resolve(\n ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n }),\n );\n }\n });\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Auth setup failed',\n });\n }\n }\n\n // ------- setupWidget -------\n async function setupWidget(\n opts: SetupWidgetOptions,\n ): Promise<Result<WidgetFrame, SetupWidgetError>> {\n const channelId = `widget-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.widget,\n {\n flow: 'buy',\n clientToken: core.context.clientToken,\n quoteSignature: opts.quote,\n channelId,\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'transactionCreated':\n opts.onEvent?.({\n kind: 'transactionCreated',\n payload: msg.payload as { transaction: { id: string; status: string } },\n });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'error': {\n const payload = msg.payload as {\n code: 'configurationError' | 'apiError' | 'generic';\n message: string;\n };\n opts.onEvent?.({\n kind: 'error',\n payload: { code: payload.code, message: payload.message },\n });\n break;\n }\n case 'close':\n opts.onEvent?.({ kind: 'close' });\n break;\n }\n });\n\n return ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Widget setup failed',\n });\n }\n }\n\n // ------- setupApplePay -------\n async function setupApplePay(\n opts: SetupApplePayOptions,\n ): Promise<Result<ApplePayFrame, SetupApplePayError>> {\n const channelId = `applepay-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.applePay,\n {\n clientToken: core.context.clientToken,\n signature: opts.quote,\n channelId,\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'error': {\n const payload = msg.payload as { code: string; message: string };\n if (payload.code === 'quoteExpired') {\n opts.onEvent?.({ kind: 'quoteExpired', payload: { setQuote } });\n } else if (payload.code === 'applePayUnavailable') {\n opts.onEvent?.({ kind: 'unsupported' });\n } else {\n const kind =\n payload.code === 'generic'\n ? 'genericError'\n : (payload.code as\n | 'configurationError'\n | 'invalidQuote'\n | 'oneTapApplePaySecondFactorRequired'\n | 'genericError');\n opts.onEvent?.({\n kind: 'error',\n payload: { kind, message: payload.message },\n });\n }\n break;\n }\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Apple Pay setup failed',\n });\n }\n }\n\n // ------- setupBuy (hidden frame) -------\n async function setupBuy(opts: SetupBuyOptions): Promise<Result<BuyFrame, SetupBuyError>> {\n const channelId = `buy-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.buy,\n {\n channelId,\n clientToken: core.context.clientToken,\n signature: opts.quote,\n ...(opts.externalTransactionId && { externalTransactionId: opts.externalTransactionId }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: true });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'challenge':\n opts.onEvent?.({\n kind: 'challenge',\n payload: msg.payload as { kind: string; url: string },\n });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as { code: string; message: string },\n });\n break;\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Buy setup failed',\n });\n }\n }\n\n // ------- setupBuyButton -------\n async function setupBuyButton(\n opts: SetupBuyButtonOptions,\n ): Promise<Result<BuyButtonFrame, SetupBuyButtonError>> {\n const channelId = `buy-button-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.buyButton,\n {\n channelId,\n clientToken: core.context.clientToken,\n signature: opts.quote,\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'challenge':\n opts.onEvent?.({\n kind: 'challenge',\n payload: msg.payload as { kind: string; url: string },\n });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as { code: string; message: string },\n });\n break;\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Buy button setup failed',\n });\n }\n }\n\n // ------- setupGooglePay -------\n async function setupGooglePay(\n opts: SetupGooglePayOptions,\n ): Promise<Result<GooglePayFrame, SetupGooglePayError>> {\n const channelId = `googlepay-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.googlePay,\n {\n clientToken: core.context.clientToken,\n signature: opts.quote,\n channelId,\n ...(opts.externalTransactionId && { externalTransactionId: opts.externalTransactionId }),\n },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n const setQuote = (signature: string) => {\n handle.sendMessage({\n version: 2,\n meta: { channelId },\n kind: 'setQuote',\n payload: { quote: { signature } },\n });\n };\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as {\n transaction: import('@moonpay/platform-protocol').FrameTransaction;\n },\n });\n break;\n case 'challenge':\n opts.onEvent?.({\n kind: 'challenge',\n payload: msg.payload as GooglePayInboundMessageMap['challenge'],\n });\n break;\n case 'error': {\n const payload = msg.payload as { code: string; message: string };\n if (payload.code === 'quoteExpired') {\n opts.onEvent?.({ kind: 'quoteExpired', payload: { setQuote } });\n } else if (payload.code === 'googlePayUnavailable') {\n opts.onEvent?.({ kind: 'unsupported' });\n } else {\n const kind =\n payload.code === 'generic'\n ? 'genericError'\n : (payload.code as 'configurationError' | 'invalidQuote' | 'genericError');\n opts.onEvent?.({\n kind: 'error',\n payload: { kind, message: payload.message },\n });\n }\n break;\n }\n }\n });\n\n return ok({\n setQuote,\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Google Pay setup failed',\n });\n }\n }\n\n // ------- resetConnection (hidden frame) -------\n async function resetConnection(): Promise<Result<void, ResetConnectionError>> {\n const channelId = `reset-${Date.now()}`;\n const url = buildFrameUrl(FRAME_PATHS.reset, { sessionToken, channelId }, { frameBaseUrl });\n\n try {\n const { promise } = createManagedFrame({\n url,\n channelId,\n hidden: true,\n handshakeTimeout: 5_000,\n });\n\n const { handle, slotId } = await promise;\n\n return new Promise<Result<void, ResetConnectionError>>((resolve) => {\n const timeout = setTimeout(() => {\n handle.dispose();\n removeSlot(slotId);\n resolve(ok(undefined));\n }, 5_000);\n\n handle.onMessage((msg: ProtocolMessage) => {\n if (msg.kind === 'complete' || msg.kind === 'error') {\n clearTimeout(timeout);\n handle.dispose();\n removeSlot(slotId);\n resolve(ok(undefined));\n }\n });\n });\n } catch {\n return ok(undefined);\n }\n }\n\n // ------- setupChallenge -------\n async function setupChallenge(\n opts: SetupChallengeOptions,\n ): Promise<Result<ChallengeFrame, SetupChallengeError>> {\n let url: URL;\n try {\n url = new URL(opts.url);\n } catch {\n return err({ kind: 'configurationError', message: 'Invalid challenge URL' });\n }\n\n let channelId = url.searchParams.get('channelId') ?? '';\n if (!channelId) {\n channelId = `challenge-${Date.now()}`;\n url.searchParams.set('channelId', channelId);\n }\n\n try {\n const { promise } = createManagedFrame({\n url: url.toString(),\n channelId,\n hidden: false,\n });\n const { handle, slotId } = await promise;\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'ready':\n opts.onEvent?.({ kind: 'ready' });\n break;\n case 'complete':\n opts.onEvent?.({\n kind: 'complete',\n payload: msg.payload as ChallengeCompleteResult,\n });\n break;\n case 'cancelled':\n opts.onEvent?.({\n kind: 'cancelled',\n payload: msg.payload as ChallengeCancellation,\n });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as { code: string; message: string },\n });\n break;\n }\n });\n\n return ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Challenge setup failed',\n });\n }\n }\n\n // ------- setupAddCard -------\n async function setupAddCard(\n opts: SetupAddCardOptions,\n ): Promise<Result<AddCardFrame, SetupAddCardError>> {\n const channelId = `add-card-${Date.now()}`;\n\n const url = buildFrameUrl(\n FRAME_PATHS.addCard,\n { channelId, clientToken: core.context.clientToken },\n { frameBaseUrl },\n );\n\n try {\n const { promise } = createManagedFrame({ url, channelId, hidden: false });\n const { handle, slotId } = await promise;\n\n handle.onMessage((msg: ProtocolMessage) => {\n switch (msg.kind) {\n case 'complete':\n opts.onEvent?.({ kind: 'complete', payload: msg.payload as { card: CardResponse } });\n break;\n case 'error':\n opts.onEvent?.({\n kind: 'error',\n payload: msg.payload as {\n code: 'generic' | 'configurationError';\n message: string;\n },\n });\n break;\n }\n });\n\n return ok({\n dispose: () => {\n handle.dispose();\n removeSlot(slotId);\n },\n });\n } catch (e) {\n return err({\n kind: 'genericError',\n message: e instanceof Error ? e.message : 'Add card setup failed',\n });\n }\n }\n\n return {\n getConnection,\n connect,\n setupAuth,\n getPaymentMethods: () => core.getPaymentMethods(),\n getQuote: (params) => core.getQuote(params),\n listTransactions: (params) => core.listTransactions(params),\n getTransaction: (id) => core.getTransaction(id),\n setupWidget,\n setupApplePay,\n setupBuy,\n setupBuyButton,\n setupGooglePay,\n deletePaymentMethod: (id) => core.deletePaymentMethod(id),\n resetConnection,\n setupChallenge,\n setupAddCard,\n\n createIdentity: (body) => core.createIdentity(body),\n getIdentity: (id) => core.getIdentity(id),\n updateIdentity: (id, body) => core.updateIdentity(id, body),\n verifyIdentity: (id) => core.verifyIdentity(id),\n getIdentityUploadUrl: (id, body) => core.getIdentityUploadUrl(id, body),\n submitIdentityFiles: (id, body) => core.submitIdentityFiles(id, body),\n };\n }, [sessionToken, frameBaseUrl, core, addSlot, removeSlot]);\n\n return (\n <MoonPayContext.Provider value={{ client }}>\n {children}\n {frameSlots.map((slot) => (\n <MoonPayFrame key={slot.id} transport={slot.transport} hidden={slot.hidden} />\n ))}\n </MoonPayContext.Provider>\n );\n}\n\n// ---------------------------------------------------------------------------\n// Hook\n// ---------------------------------------------------------------------------\n\nexport function useMoonPay(): MoonPayContextValue {\n const ctx = useContext(MoonPayContext);\n if (!ctx) {\n throw new Error('useMoonPay must be used within a <MoonPayProvider>');\n }\n return ctx;\n}\n","import type { ProtocolMessage } from '@moonpay/platform-protocol';\nimport type { FrameOptions, FrameTransport } from '@moonpay/platform-sdk-core';\nimport type { RefObject } from 'react';\nimport type WebView from 'react-native-webview';\n\n/**\n * FrameTransport implementation for React Native using react-native-webview.\n *\n * Unlike the web IframeTransport, the WebView is rendered declaratively via\n * React components. This transport bridges the imperative FrameTransport\n * interface to a WebView ref.\n */\nexport class WebViewTransport implements FrameTransport {\n private webViewRef: RefObject<WebView | null> | null = null;\n private handlers: Array<(msg: ProtocolMessage) => void> = [];\n private _url: string = '';\n private _options: FrameOptions | null = null;\n\n /** Called by the frame component when it mounts the WebView. */\n attachWebView(ref: RefObject<WebView | null>): void {\n this.webViewRef = ref;\n }\n\n /** Called by the WebView's onMessage prop to route incoming messages. */\n handleWebViewMessage(data: string): void {\n try {\n const msg: ProtocolMessage = JSON.parse(data);\n if (!msg.kind) return;\n for (const handler of this.handlers) {\n handler(msg);\n }\n } catch {\n // Ignore non-protocol messages\n }\n }\n\n get url(): string {\n return this._url;\n }\n\n get options(): FrameOptions | null {\n return this._options;\n }\n\n // FrameTransport interface\n\n create(url: string, options: FrameOptions): void {\n this._url = url;\n this._options = options;\n // The actual WebView rendering is handled by React components.\n // This method stores the URL and options for the component to read.\n }\n\n sendMessage(message: ProtocolMessage): void {\n if (!this.webViewRef?.current) {\n throw new Error('Cannot send message: WebView not attached');\n }\n const js = `\n window.postMessage(${JSON.stringify(JSON.stringify(message))}, '*');\n true;\n `;\n this.webViewRef.current.injectJavaScript(js);\n }\n\n onMessage(handler: (msg: ProtocolMessage) => void): () => void {\n this.handlers.push(handler);\n return () => {\n const idx = this.handlers.indexOf(handler);\n if (idx >= 0) this.handlers.splice(idx, 1);\n };\n }\n\n dispose(): void {\n this.handlers.length = 0;\n this.webViewRef = null;\n this._url = '';\n this._options = null;\n }\n}\n"],"mappings":"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","names":["useRef","jsx","useRef"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moonpay/platform-sdk-react-native",
|
|
3
|
-
"version": "0.3.0
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "MoonPay Developer Platform SDK for React Native",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"clean": "rm -rf dist"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@moonpay/platform-protocol": "0.3.0
|
|
32
|
-
"@moonpay/platform-sdk-core": "0.3.0
|
|
31
|
+
"@moonpay/platform-protocol": "0.3.0",
|
|
32
|
+
"@moonpay/platform-sdk-core": "0.3.0"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"react": "18.2.0",
|