Drizzle adapter usePlural not working with passkey & JWT plugins

I'm having an issue with usePlural for Drizzle where passkey is being entered as passkey but jwks is being entered as jwkss. For passkey, I got it to properly generate the correct plural but I had to add the following to plugins:
passkey({
schema: {
passkey: {
fields: {}
}
}
}),
passkey({
schema: {
passkey: {
fields: {}
}
}
}),
It should automatically detect plurals. For JWKS, well tbh I don't even want to store my JWKS in the database at all, I want to provide it directly to auth to avoid queries. But I do not want to store it as "jwkss". This is how I had to configure jwks to store as jwks even with usePlural for Drizzle. modelName: jwk
jwt({
jwks: {
keyPairConfig: { alg: "ES256" }
},
schema: {
jwks: {
modelName: "jwk",
fields: {}
}
}
}),
jwt({
jwks: {
keyPairConfig: { alg: "ES256" }
},
schema: {
jwks: {
modelName: "jwk",
fields: {}
}
}
}),
This doesn't feel ideal, I think definitely passkeys should detect usePlural on its own without needing to pass schema
1 Reply
daveycodez
daveycodezOP4w ago
also for some reason passkey is generating credentialId as credential_i_d instead of credential_id is credentialID a typo? This isn't working
passkey({
schema: {
passkey: {
fields: {
credentialID: "credential_id"
}
}
}
}),
passkey({
schema: {
passkey: {
fields: {
credentialID: "credential_id"
}
}
}
}),
still giving me credentialID: credential_i_d Actually there's no way to usePlurals but leave jwks as jwks instead of jwkss unless I manually change everything else to plural. It complains if I set modelName to jwk, even though it correctly changes it to jwks. But if I set it to jwks, it becomes jwkss So yea there's some bugs with the schema on both passkeys and jwks

Did you find this page helpful?