···8080 '@tanstack/vue-query': Plugins.TanStackVueQuery.Types['Types'];
8181 arktype: Plugins.Arktype.Types['Types'];
8282 fastify: Plugins.Fastify.Types['Types'];
8383- nestjs: Plugins.NestJS.Types['Types'];
8383+ nestjs: Plugins.NestJs.Types['Types'];
8484 swr: Plugins.Swr.Types['Types'];
8585 valibot: Plugins.Valibot.Types['Types'];
8686 zod: Plugins.Zod.Types['Types'];
···141141import type { TanStackVueQueryPlugin } from './plugins/@tanstack/vue-query';
142142import type { ArktypePlugin } from './plugins/arktype';
143143import type { FastifyPlugin } from './plugins/fastify';
144144-import type { NestJSPlugin } from './plugins/nestjs';
144144+import type { NestJsPlugin } from './plugins/nestjs';
145145import type { SwrPlugin } from './plugins/swr';
146146import type { ValibotPlugin, ValibotResolvers } from './plugins/valibot';
147147import type { ZodPlugin, ZodResolvers } from './plugins/zod';
···211211 export type Types = FastifyPlugin;
212212 }
213213214214- export namespace NestJS {
215215- export type Types = NestJSPlugin;
214214+ export namespace NestJs {
215215+ export type Types = NestJsPlugin;
216216 }
217217218218 export namespace HeyApiClientAngular {
+2-2
packages/openapi-ts/src/plugins/nestjs/config.ts
···11import { definePluginConfig } from '@hey-api/shared';
2233import { handler } from './plugin';
44-import type { NestJSPlugin } from './types';
44+import type { NestJsPlugin } from './types';
5566-export const defaultConfig: NestJSPlugin['Config'] = {
66+export const defaultConfig: NestJsPlugin['Config'] = {
77 config: {
88 includeInEntry: false,
99 },
+1-1
packages/openapi-ts/src/plugins/nestjs/index.ts
···11export { defaultConfig, defineConfig } from './config';
22-export type { NestJSPlugin } from './types';
22+export type { NestJsPlugin } from './types';