GitHub

DaffResetPasswordServiceInterface

import { DaffResetPasswordServiceInterface } from '@daffodil/auth/driver'
interface DaffResetPasswordServiceInterface<T extends DaffAuthResetPasswordInfo = DaffAuthResetPasswordInfo> {
  resetPassword: Observable<string>
  resetPasswordOnly: Observable<void>
  sendResetEmail: Observable<void>
}

Properties

Name Type Description
resetPassword Observable<string>

Resets password for the specified customer and logs in.

resetPasswordOnly Observable<void>

Resets password for the specified customer.

sendResetEmail Observable<void>

Send a password reset email to the specified email address.