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: Add missing parseExtensions imports in 3.1.x parsers

Co-authored-by: mrlubos <12529395+mrlubos@users.noreply.github.com>

+2 -2
+1 -1
packages/openapi-ts/src/openApi/3.1.x/parser/operation.ts
··· 12 12 } from '../types/spec'; 13 13 import { contentToSchema, mediaTypeObjects } from './mediaType'; 14 14 import { paginationField } from './pagination'; 15 - import { schemaToIrSchema } from './schema'; 15 + import { parseExtensions, schemaToIrSchema } from './schema'; 16 16 17 17 interface Operation 18 18 extends Omit<OperationObject, 'parameters'>,
+1 -1
packages/openapi-ts/src/openApi/3.1.x/parser/parameter.ts
··· 9 9 } from '../types/spec'; 10 10 import { mediaTypeObjects } from './mediaType'; 11 11 import { paginationField } from './pagination'; 12 - import { schemaToIrSchema } from './schema'; 12 + import { parseExtensions, schemaToIrSchema } from './schema'; 13 13 14 14 /** 15 15 * Returns default parameter `allowReserved` based on value of `in`.