@@ -47,6 +47,7 @@ declare module '@hey-api/codegen-core' {
4747 | 'arktype'
4848 | 'fastify'
4949 | 'json-schema'
50+ | 'msw'
5051 | 'sdk'
5152 | 'typescript'
5253 | 'valibot'
@@ -67,6 +68,7 @@ declare module '@hey-api/shared' {
6768 '@hey-api/client-next' : Plugins . HeyApiClientNext . Types [ 'Types' ] ;
6869 '@hey-api/client-nuxt' : Plugins . HeyApiClientNuxt . Types [ 'Types' ] ;
6970 '@hey-api/client-ofetch' : Plugins . HeyApiClientOfetch . Types [ 'Types' ] ;
71+ '@hey-api/examples' : Plugins . HeyApiExamples . Types [ 'Types' ] ;
7072 '@hey-api/schemas' : Plugins . HeyApiSchemas . Types [ 'Types' ] ;
7173 '@hey-api/sdk' : Plugins . HeyApiSdk . Types [ 'Types' ] ;
7274 '@hey-api/transformers' : Plugins . HeyApiTransformers . Types [ 'Types' ] ;
@@ -126,6 +128,7 @@ import type {
126128 HeyApiClientOfetchPlugin ,
127129 OfetchClient as OfetchClientImp ,
128130} from './plugins/@hey-api/client-ofetch' ;
131+ import type { HeyApiExamplesPlugin } from './plugins/@hey-api/examples' ;
129132import type { HeyApiSchemasPlugin } from './plugins/@hey-api/schemas' ;
130133import type { HeyApiSdkPlugin } from './plugins/@hey-api/sdk' ;
131134import type { HeyApiTransformersPlugin } from './plugins/@hey-api/transformers' ;
@@ -247,6 +250,10 @@ export namespace Plugins {
247250 export type Types = HeyApiClientOfetchPlugin ;
248251 }
249252
253+ export namespace HeyApiExamples {
254+ export type Types = HeyApiExamplesPlugin ;
255+ }
256+
250257 export namespace HeyApiSchemas {
251258 export type Types = HeyApiSchemasPlugin ;
252259 }
0 commit comments