Checklist
Description
with the previous version (v4) of auth0 sdk we were able to creat a client by passing
client_authentication_methods: {
private_key_jwt: {
credentials: [
{
credential_type: 'public_key',
name: 'publick_key_name',
pem: your_pem_var,
alg: 'RS256',
parse_expiry_from_cert: false,
expires_at: expires_at_var,
},
],
},
},
With v5 credentials is only allowed "A list of unique and previously created credential IDs enabled on the client for Private Key JWT authentication." but the above code still works (with any) and the client is created with the correct private key jwt credential
Reproduction
auth0.clients.create with typescript and setting private key jwt with credentials
Additional context
No response
node-auth0 version
5.0.0
Node.js version
22.15.0
Checklist
Description
with the previous version (v4) of auth0 sdk we were able to creat a client by passing
With v5
credentialsis only allowed "A list of unique and previously created credential IDs enabled on the client for Private Key JWT authentication." but the above code still works (withany) and the client is created with the correct private key jwt credentialReproduction
auth0.clients.createwith typescript and setting private key jwt with credentialsAdditional context
No response
node-auth0 version
5.0.0
Node.js version
22.15.0