@privy-io/react-auth 1.28.5-beta.5 → 1.29.0-beta.2
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 +159 -159
- package/dist/index.d.ts +8 -0
- package/dist/index.js +155 -155
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -722,6 +722,14 @@ type PrivyClientConfig = {
|
|
|
722
722
|
* Defaults to false.
|
|
723
723
|
*/
|
|
724
724
|
requireUserPasswordOnCreate?: boolean;
|
|
725
|
+
/**
|
|
726
|
+
* If true, Privy will not prompt or instantiate any UI for embedded wallet signatures and transactions.
|
|
727
|
+
* If false, embedded wallet actions will raise a modal and require user confirmation to proceed.
|
|
728
|
+
*
|
|
729
|
+
* Defaults to false.
|
|
730
|
+
* @hidden
|
|
731
|
+
*/
|
|
732
|
+
noPromptOnSignature?: boolean;
|
|
725
733
|
};
|
|
726
734
|
/**
|
|
727
735
|
* Override the default rendering settings, used for displaying in a non-modal setting.
|