async changePassword(request: UserUpdatePassword): Promise<User> {
    const path = '/account/password'
    return await this.patch<User, UserUpdatePassword>(path, request)
  }