This interface defines the structure of the request body used when updating a user’s password.
export interface UpdatePasswordRequest {
    current_password?: string;
    new_password?: string;
}

Properties

  • current_password (string, optional): The user’s current password.
  • new_password (string, optional): The user’s new password.