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>
}
ObservableResets password for the specified customer and logs in.
| Parameter | info: T |
|---|---|
| Description |
ObservableResets password for the specified customer.
| Parameter | info: T |
|---|---|
| Description |
ObservableSend a password reset email to the specified email address.
| Parameter | email: string |
|---|---|
| Description |