fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix typecheck in findDiscriminatorPropertyType 3.1.x

+3
+3
packages/shared/src/openApi/3.1.x/parser/schema.ts
··· 53 53 54 54 // Check direct properties 55 55 const property = resolved.properties?.[propertyName]; 56 + if (property === true) { 57 + continue; 58 + } 56 59 if (property) { 57 60 const resolvedProperty = property.$ref 58 61 ? context.resolveRef<SchemaObject>(property.$ref)