@authowl/react 0.15.0 → 0.17.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 +23 -1
- package/dist/index.cjs +107 -966
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +102 -947
- package/dist/styles.css +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -167,6 +167,8 @@ type UseSignInResult = {
|
|
|
167
167
|
/** Passwordless: complete sign-in with the emailed code. */
|
|
168
168
|
signInEmailOtp: AuthOwlClient['signIn']['emailOtp'];
|
|
169
169
|
/** Managed SMS: request a phone verification code. */
|
|
170
|
+
preparePhoneOtp: AuthOwlClient['phoneOtp']['prepare'];
|
|
171
|
+
/** Managed SMS: request a phone verification code. */
|
|
170
172
|
startPhoneOtp: AuthOwlClient['phoneOtp']['start'];
|
|
171
173
|
/** Managed SMS: verify the phone code and establish a session. */
|
|
172
174
|
verifyPhoneOtp: AuthOwlClient['phoneOtp']['verify'];
|
package/dist/index.d.ts
CHANGED
|
@@ -167,6 +167,8 @@ type UseSignInResult = {
|
|
|
167
167
|
/** Passwordless: complete sign-in with the emailed code. */
|
|
168
168
|
signInEmailOtp: AuthOwlClient['signIn']['emailOtp'];
|
|
169
169
|
/** Managed SMS: request a phone verification code. */
|
|
170
|
+
preparePhoneOtp: AuthOwlClient['phoneOtp']['prepare'];
|
|
171
|
+
/** Managed SMS: request a phone verification code. */
|
|
170
172
|
startPhoneOtp: AuthOwlClient['phoneOtp']['start'];
|
|
171
173
|
/** Managed SMS: verify the phone code and establish a session. */
|
|
172
174
|
verifyPhoneOtp: AuthOwlClient['phoneOtp']['verify'];
|