@privy-io/react-auth 1.12.1-beta.2 → 1.12.1-beta.4
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 +75 -79
- package/dist/index.d.ts +3 -2
- package/dist/index.js +75 -79
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -191,7 +191,7 @@ interface PrivyProviderProps {
|
|
|
191
191
|
*/
|
|
192
192
|
onSuccess?: (user: User, isNewUser: boolean) => void;
|
|
193
193
|
/**
|
|
194
|
-
* @experimental This feature is
|
|
194
|
+
* @experimental **Experimental**: This feature is {@link https://docs.privy.io/guide/faq/experimental-features subject to change at any time}.
|
|
195
195
|
*
|
|
196
196
|
* An optional callback that will execute if a `login` call fails.
|
|
197
197
|
*
|
|
@@ -429,7 +429,8 @@ interface PrivyInterface {
|
|
|
429
429
|
*/
|
|
430
430
|
setActiveWallet: (address: string) => void;
|
|
431
431
|
/**
|
|
432
|
-
* @experimental
|
|
432
|
+
* @experimental **Experimental**: This feature is {@link https://docs.privy.io/guide/faq/experimental-features subject to change at any time}.
|
|
433
|
+
*
|
|
433
434
|
* Get a short-lived, one-time-use token to start a new Privy session from the existing authenticated session. Raises an exception if the current session was already forked from a previous session.
|
|
434
435
|
*/
|
|
435
436
|
forkSession: () => Promise<string>;
|