Hello guys,
I developed the auth application using TS and fusionauth ts client SDK,
I need to use a function update user like this
const result = await this.fusionAuthService.editUser(body.userId, {
email: body.email,
firstName: body.firstName,
lastName: body.lastName,
mobilePhone: body.mobilePhone,
});
after that U check on the fusionauth dashboard, the data was updated but the username and lastLoginInstant is removed from the user so I cannot login with that user.
lib version is "@fusionauth/typescript-client": "^1.48.0"
Thank you for your help.