import { DaffResetPasswordServiceInterface } from '@daffodil/auth/driver'
interface DaffResetPasswordServiceInterface<T extends DaffAuthResetPasswordInfo = DaffAuthResetPasswordInfo> {
resetPassword(info: T): Observable<string>
resetPasswordOnly(info: T): Observable<void>
sendResetEmail(email: string): Observable<void>
}
Observable<string>
Resets password for the specified customer and logs in.
Parameter | info: T |
---|---|
Description |
Observable<void>
Resets password for the specified customer.
Parameter | info: T |
---|---|
Description |
Observable<void>
Send a password reset email to the specified email address.
Parameter | email: string |
---|---|
Description |