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
fix: handle OpenAPI 3.1 null type to prevent unknown in union types
Schemas with { type: "null" } (used in 3.1 for nullable refs via anyOf)
were falling through to the default case, producing T | unknown instead
of T | null.
0 commit comments