···14141515import type { IR } from './types';
16161717-export class IRContext<Spec extends Record<string, any> = any> {
1717+export class Context<Spec extends Record<string, any> = any> {
1818 /**
1919 * Configuration for parsing and generating the output. This
2020 * is a mix of user-provided and default values.
+1-1
packages/openapi-ts/src/ir/types.d.ts
···44 ServerObject,
55} from '~/openApi/3.1.x/types/spec';
6677-import type { IRContext } from './context';
77+import type { Context as IRContext } from './context';
88import type { IRMediaType } from './mediaType';
991010interface IRBodyObject {
+2-2
packages/openapi-ts/src/openApi/index.ts
···11import { satisfies } from '~/config/utils/package';
22-import { IRContext } from '~/ir/context';
22+import { Context } from '~/ir/context';
33import type { IR } from '~/ir/types';
44import { parseV2_0_X } from '~/openApi/2.0.x';
55import { parseV3_0_X } from '~/openApi/3.0.x';
···7474 logger: Logger;
7575 spec: unknown;
7676}): IR.Context | undefined => {
7777- const context = new IRContext({
7777+ const context = new Context({
7878 config,
7979 dependencies,
8080 logger,