···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
22import type { OpenApiExternalDocs } from './OpenApiExternalDocs';
33import type { OpenApiInfo } from './OpenApiInfo';
44import type { OpenApiParameter } from './OpenApiParameter';
+1-1
src/openApi/v2/interfaces/OpenApiHeader.ts
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
22import type { OpenApiItems } from './OpenApiItems';
3344/**
+1-1
src/openApi/v2/interfaces/OpenApiResponse.ts
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
22import type { OpenApiExample } from './OpenApiExample';
33import type { OpenApiHeader } from './OpenApiHeader';
44import type { OpenApiReference } from './OpenApiReference';
+1-1
src/openApi/v2/interfaces/OpenApiSchema.ts
···11import type { WithEnumExtension } from '../../../types/client';
22-import type { Dictionary } from '../../../utils/types';
22+import type { Dictionary } from '../../../types/generic';
33import type { WithNullableExtension } from './Extensions/WithNullableExtension';
44import type { OpenApiExternalDocs } from './OpenApiExternalDocs';
55import type { OpenApiReference } from './OpenApiReference';
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
2233/**
44 * https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#securitySchemeObject
+1-1
src/openApi/v3/interfaces/OpenApiComponents.ts
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
22import type { OpenApiCallback } from './OpenApiCallback';
33import type { OpenApiExample } from './OpenApiExample';
44import type { OpenApiHeader } from './OpenApiHeader';
+1-1
src/openApi/v3/interfaces/OpenApiDiscriminator.ts
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
2233/**
44 * https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#discriminatorObject
+1-1
src/openApi/v3/interfaces/OpenApiEncoding.ts
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
22import type { OpenApiHeader } from './OpenApiHeader';
3344/**
+1-1
src/openApi/v3/interfaces/OpenApiHeader.ts
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
22import type { OpenApiExample } from './OpenApiExample';
33import type { OpenApiReference } from './OpenApiReference';
44import type { OpenApiSchema } from './OpenApiSchema';
+1-1
src/openApi/v3/interfaces/OpenApiLink.ts
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
22import type { OpenApiReference } from './OpenApiReference';
33import type { OpenApiServer } from './OpenApiServer';
44
+1-1
src/openApi/v3/interfaces/OpenApiMediaType.ts
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
22import type { OpenApiEncoding } from './OpenApiEncoding';
33import type { OpenApiExample } from './OpenApiExample';
44import type { OpenApiReference } from './OpenApiReference';
+1-1
src/openApi/v3/interfaces/OpenApiOAuthFlow.ts
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
2233/**
44 * https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#oauthFlowObject
+1-1
src/openApi/v3/interfaces/OpenApiOperation.ts
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
22import type { OpenApiCallback } from './OpenApiCallback';
33import type { OpenApiExternalDocs } from './OpenApiExternalDocs';
44import type { OpenApiParameter } from './OpenApiParameter';
+1-1
src/openApi/v3/interfaces/OpenApiParameter.ts
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
22import type { OpenApiExample } from './OpenApiExample';
33import type { OpenApiReference } from './OpenApiReference';
44import type { OpenApiSchema } from './OpenApiSchema';
+1-1
src/openApi/v3/interfaces/OpenApiRequestBody.ts
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
22import type { OpenApiMediaType } from './OpenApiMediaType';
33import type { OpenApiReference } from './OpenApiReference';
44
+1-1
src/openApi/v3/interfaces/OpenApiResponse.ts
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
22import type { OpenApiHeader } from './OpenApiHeader';
33import type { OpenApiLink } from './OpenApiLink';
44import type { OpenApiMediaType } from './OpenApiMediaType';
+1-1
src/openApi/v3/interfaces/OpenApiSchema.ts
···11import type { WithEnumExtension } from '../../../types/client';
22-import type { Dictionary } from '../../../utils/types';
22+import type { Dictionary } from '../../../types/generic';
33import type { OpenApiDiscriminator } from './OpenApiDiscriminator';
44import type { OpenApiExternalDocs } from './OpenApiExternalDocs';
55import type { OpenApiReference } from './OpenApiReference';
+1-1
src/openApi/v3/interfaces/OpenApiServer.ts
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
22import type { OpenApiServerVariable } from './OpenApiServerVariable';
3344/**
+1-1
src/openApi/v3/parser/getContent.ts
···11-import type { Dictionary } from '../../../utils/types';
11+import type { Dictionary } from '../../../types/generic';
22import type { OpenApi } from '../interfaces/OpenApi';
33import type { OpenApiMediaType } from '../interfaces/OpenApiMediaType';
44import type { OpenApiSchema } from '../interfaces/OpenApiSchema';
+1-1
src/utils/discriminator.ts
···11import type { OpenApi } from '../openApi/v3/interfaces/OpenApi';
22import type { OpenApiDiscriminator } from '../openApi/v3/interfaces/OpenApiDiscriminator';
33import type { Model } from '../types/client';
44+import type { Dictionary } from '../types/generic';
45import { stripNamespace } from './stripNamespace';
55-import type { Dictionary } from './types';
6677const inverseDictionary = (map: Dictionary<string>): Dictionary<string> => {
88 const m2: Dictionary<string> = {};