@privy-io/react-auth 1.21.0 → 1.21.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.js +118 -118
- package/dist/index.d.ts +8 -1
- package/dist/index.js +111 -111
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -248,6 +248,12 @@ interface PrivyProviderProps {
|
|
|
248
248
|
* Values here will override their server-configuration counterparts.
|
|
249
249
|
*/
|
|
250
250
|
config?: PrivyClientConfig;
|
|
251
|
+
/**
|
|
252
|
+
* Override the URL of the Privy API, which is 'https://auth.privy.io' by default.
|
|
253
|
+
* For development and testing use only.
|
|
254
|
+
* @hidden
|
|
255
|
+
*/
|
|
256
|
+
apiUrl?: string;
|
|
251
257
|
/**
|
|
252
258
|
* @ignore
|
|
253
259
|
* @class
|
|
@@ -786,6 +792,7 @@ declare class PrivyClient {
|
|
|
786
792
|
private appId;
|
|
787
793
|
private session;
|
|
788
794
|
private clientAnalyticsId;
|
|
795
|
+
apiUrl: string;
|
|
789
796
|
authFlow?: AuthFlow;
|
|
790
797
|
connectors: ConnectorManager;
|
|
791
798
|
/**
|
|
@@ -796,7 +803,7 @@ declare class PrivyClient {
|
|
|
796
803
|
/**
|
|
797
804
|
* The URL of the Privy API. Defaults to `https://api.privy.io/v0`.
|
|
798
805
|
*/
|
|
799
|
-
|
|
806
|
+
apiUrl?: string;
|
|
800
807
|
/**
|
|
801
808
|
* The app id from your console
|
|
802
809
|
*/
|