You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When signing up a new user, using the authentication api, the data returned from auth0.database.signUp() does not match the type SignUp Response.
SignUpResponse is telling there is a id key in the response. The actual response however does not contain that key, but _id. When using the key _id gives me a compilation error, because of the type mismatch.
Reproduction
Sign up a new user using auth0.database.signUp(...)
Check the response for the missing id key
Additional context
I'm using the auth0 sdk in a Nest.js application
node-auth0 version
4.3.1
Node.js version
20.11.0
The text was updated successfully, but these errors were encountered:
Checklist
Description
When signing up a new user, using the authentication api, the data returned from
auth0.database.signUp()
does not match the type SignUp Response.SignUpResponse is telling there is a
id
key in the response. The actual response however does not contain that key, but_id
. When using the key_id
gives me a compilation error, because of the type mismatch.Reproduction
auth0.database.signUp(...)
id
keyAdditional context
I'm using the auth0 sdk in a Nest.js application
node-auth0 version
4.3.1
Node.js version
20.11.0
The text was updated successfully, but these errors were encountered: