GitHub

DaffResetPasswordServiceInterface

Type

import { DaffResetPasswordServiceInterface } from '@daffodil/auth/driver'

interface DaffResetPasswordServiceInterface<T extends DaffAuthResetPasswordInfo = DaffAuthResetPasswordInfo> {
  resetPassword(info: T): any
  resetPasswordOnly(info: T): any
  sendResetEmail(email: string): any
}

() Methods

resetPassword
any

Resets password for the specified customer and logs in.

Parameters
Parameterinfo: T
Description
resetPasswordOnly
any

Resets password for the specified customer.

Parameters
Parameterinfo: T
Description
sendResetEmail
any

Send a password reset email to the specified email address.

Parameters
Parameteremail: string
Description