@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 CHANGED
@@ -156,7 +156,9 @@ interface ForgotPasswordResponse {
156
156
  should_show_mobile_otp_screen?: boolean;
157
157
  }
158
158
  interface ResetPasswordInput {
159
- token: string;
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: string;
159
+ token?: string;
160
+ otp?: string;
161
+ phone_number?: string;
160
162
  password: string;
161
163
  confirm_password: string;
162
164
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authorizerdev/authorizer-js",
3
- "version": "2.0.0-beta.2",
3
+ "version": "2.0.0-beta.3",
4
4
  "packageManager": "pnpm@7.28.0",
5
5
  "author": "Lakhan Samani",
6
6
  "license": "MIT",