node-auth0
node-auth0 copied to clipboard
Type of the field `provider` is mismatching in the `bodyParameters` for `link` method in user management apis
Checklist
- [X] I have looked into the Readme, Examples, and FAQ and have not found a suitable solution or answer.
- [X] I have looked into the API documentation and have not found a suitable solution or answer.
- [X] I have searched the issues and have not found a suitable solution or answer.
- [ ] I have searched the Auth0 Community forums and have not found a suitable solution or answer.
- [X] I agree to the terms within the Auth0 Code of Conduct.
Description
The field provider is defined as string in the interfaces UserIdentities and GetUsers200ResponseOneOfInnerIdentitiesInner. But for the method link in users section of the management api client, the optional field provider in the bodyParameters of type PostIdentitiesRequest is defined as PostIdentitiesRequestProviderEnum. Due to this, one can't simply extract identitites from a user profile and loop it to link as suggested in the documentation, Since it throws a type mismatch error for provider.
Reproduction
The scenario is finding every account with same email id and linking it together.
Additional context
No response
node-auth0 version
4.0.1
Node.js version
18
Hi @misuvii - thanks for raising this
Due to this, one can't simply extract identitites from a user profile and loop it to link as suggested in the documentation, Since it throws a type mismatch error for provider.
Could you share the code that raises the error? (and a link to the documentation)
@adamjmcgrath This is the code that raises the error
const mergeMetadataAndLinkUsersTask = async (
secondary: GetUsers200ResponseOneOfInner,
identity: GetUsers200ResponseOneOfInnerIdentitiesInner,
) => {
// Include user & app metadata
const mergedUserMetadata = merge({}, secondary.user_metadata, primary.user_metadata);
const mergedAppMetadata = merge({}, secondary.app_metadata, primary.app_metadata);
const updateUserTask = async () => {
await client.users.update(
{ id: primary.user_id! },
{
user_metadata: mergedUserMetadata,
app_metadata: mergedAppMetadata,
},
);
};
const linkUsersTask = async () => {
await client.users.link(
{ id: primary.user_id! },
{
user_id: secondary.user_id!,
provider: identity.provider, // Here identity.provider is a string, but the method expects it to be of type PostIdentitiesRequestProviderEnum
},
);
};
await Promise.all([updateUserTask(), linkUsersTask()]);
};```
Thanks for clarifying @misuvii - I've raised this with the team that owns those endpoints, will see if we can get this changed.
In the meantime, you can safely cast the identity.provider property as PostIdentitiesRequestProviderEnum
const linkUsersTask = async () => {
await client.users.link(
{ id: primary.user_id! },
{
user_id: secondary.user_id!,
provider: identity.provider as PostIdentitiesRequestProviderEnum,
}
);
};
Also hit this issue today, will use typecasting to bypass for now