···11+---
22+'@hey-api/openapi-ts': patch
33+---
44+55+feat(client): added angular, axios, fetch, next & nuxt client type export for external typing purposes.
+5
packages/openapi-ts/src/index.ts
···118118 OpenApiResponseObject,
119119 OpenApiSchemaObject,
120120} from './openApi/types';
121121+export type { AngularClient } from './plugins/@hey-api/client-angular';
122122+export type { AxiosClient } from './plugins/@hey-api/client-axios';
121123export {
122124 clientDefaultConfig,
123125 clientDefaultMeta,
124126} from './plugins/@hey-api/client-core/config';
125127export { clientPluginHandler } from './plugins/@hey-api/client-core/plugin';
126128export type { Client } from './plugins/@hey-api/client-core/types';
129129+export type { FetchClient } from './plugins/@hey-api/client-fetch';
130130+export type { NextClient } from './plugins/@hey-api/client-next';
131131+export type { NuxtClient } from './plugins/@hey-api/client-nuxt';
127132export type { ExpressionTransformer } from './plugins/@hey-api/transformers/expressions';
128133export type { TypeTransformer } from './plugins/@hey-api/transformers/types';
129134export { definePluginConfig } from './plugins/shared/utils/config';
···11+export type { Client as AngularClient } from './bundle/types';
12export { defaultConfig, defineConfig } from './config';
23export type { HeyApiClientAngularPlugin } from './types';
···11+export type { Client as AxiosClient } from './bundle/types';
12export { defaultConfig, defineConfig } from './config';
23export type { HeyApiClientAxiosPlugin } from './types';
···11+export type { Client as FetchClient } from './bundle/types';
12export { defaultConfig, defineConfig } from './config';
23export type { HeyApiClientFetchPlugin } from './types';
···11+export type { Client as NextClient } from './bundle/types';
12export { defaultConfig, defineConfig } from './config';
23export type { HeyApiClientNextPlugin } from './types';
···11+export type { Client as NuxtClient } from './bundle/types';
12export { defaultConfig, defineConfig } from './config';
23export type { HeyApiClientNuxtPlugin } from './types';