Closed newmoneybigbucks closed 8 months ago
Latest commit: 722f5370d13f647083f7af2f71c3291b52353bf9
The changes in this PR will be included in the next version bump.
Not sure what this means? Click here to learn what changesets are.
Click here if you're a maintainer who wants to add another changeset to this PR
Thank you!
AppendToReponseType had an issue where if you passed undefined to the MoviesGetDetailsReponse (or the other get details response types) as the required generic parameters (if your using a those types on their own) and then trying to use Omit on it the never would get distributed over all the types of the data fields making the type unsuable. I think this is something to do with Record<string, never> being treated as an index signature, and then when Omit does T[P] never gets put in each place, but I am not 100% on why