@phantom/react-native-sdk 1.0.7 → 2.0.0-beta.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 CHANGED
@@ -267,6 +267,7 @@ interface PhantomSDKConfig {
267
267
  authOptions?: {
268
268
  authUrl?: string; // Custom auth URL (optional)
269
269
  redirectUrl?: string; // Custom redirect URL (optional)
270
+ authApiBaseUrl?: string; // Custom OAuth URL (optional)
270
271
  };
271
272
  }
272
273
  ```
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 {