GitHub

DaffCustomerChangePassword

Changes the password of the currently logged-in customer.

import { DaffCustomerChangePassword } from '@daffodil/customer/state'
class DaffCustomerChangePassword implements Action {
  readonly type: DaffCustomerActionTypes.CustomerChangePasswordAction
  newPassword: string
  oldPassword: string
}

Properties

Name Type Description
type DaffCustomerActionTypes.CustomerChangePasswordAction
newPassword string
oldPassword string