@authorizerdev/authorizer-js 2.0.0-beta.2 → 2.0.0-beta.3
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/lib/index.d.mts +3 -1
- package/lib/index.d.ts +3 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -156,7 +156,9 @@ interface ForgotPasswordResponse {
|
|
|
156
156
|
should_show_mobile_otp_screen?: boolean;
|
|
157
157
|
}
|
|
158
158
|
interface ResetPasswordInput {
|
|
159
|
-
token
|
|
159
|
+
token?: string;
|
|
160
|
+
otp?: string;
|
|
161
|
+
phone_number?: string;
|
|
160
162
|
password: string;
|
|
161
163
|
confirm_password: string;
|
|
162
164
|
}
|
package/lib/index.d.ts
CHANGED
|
@@ -156,7 +156,9 @@ interface ForgotPasswordResponse {
|
|
|
156
156
|
should_show_mobile_otp_screen?: boolean;
|
|
157
157
|
}
|
|
158
158
|
interface ResetPasswordInput {
|
|
159
|
-
token
|
|
159
|
+
token?: string;
|
|
160
|
+
otp?: string;
|
|
161
|
+
phone_number?: string;
|
|
160
162
|
password: string;
|
|
161
163
|
confirm_password: string;
|
|
162
164
|
}
|