@phantom/react-native-sdk 1.0.7 → 2.0.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/README.md +1 -0
- package/dist/index.d.ts +1 -5
- package/dist/index.js +107 -549
- package/dist/index.mjs +99 -540
- package/package.json +11 -11
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -26,11 +26,7 @@ interface PhantomSDKConfig extends Omit<EmbeddedProviderConfig, "apiBaseUrl" | "
|
|
|
26
26
|
authOptions?: {
|
|
27
27
|
authUrl?: string;
|
|
28
28
|
redirectUrl?: string;
|
|
29
|
-
|
|
30
|
-
/** When also provided, the Auth2 PKCE flow is used instead of the legacy Phantom Connect flow. */
|
|
31
|
-
unstable__auth2Options?: {
|
|
32
|
-
authApiBaseUrl: string;
|
|
33
|
-
clientId: string;
|
|
29
|
+
authApiBaseUrl?: string;
|
|
34
30
|
};
|
|
35
31
|
}
|
|
36
32
|
interface ConnectOptions {
|