-
Notifications
You must be signed in to change notification settings - Fork 316
Description
Checklist
- I have looked into the Readme, Examples, and FAQ and have not found a suitable solution or answer.
- I have looked into the API documentation and have not found a suitable solution or answer.
- 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.
- I agree to the terms within the Auth0 Code of Conduct.
Describe the problem you'd like to have solved
With V5, it appears that every single field on responses is nullable. Up to and including the ID field on any given element. This can't possibly be correct, and because I know that some of these fields are non-null, I've in some places added asserts or ?? '' because I know they'll be there, but making everything optional means, simultaneously, that I have no idea what is actually optional. Here is one simple example -
export interface CreateOrganizationInvitationResponseContent {
id?: string;
organization_id?: string;
inviter?: Management.OrganizationInvitationInviter;
invitee?: Management.OrganizationInvitationInvitee;
...
}
An invitation will always minimally have an id, an org id, and an invitee - right? I think many of the rest of these are non-null too, but consider these as a starting point. Additionally, the Invitee and Inviter objects both have their properties as non-null, which feels odd?
Describe the ideal solution
Please update the type definitions to accurately reflect nullability. The type files say you're using Fern to generate them from an API - maybe one or both of those need to be updated to address this?