fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #1467 from hey-api/fix/export-utils

fix: export utils

authored by

Lubos and committed by
GitHub
6dfbd49d 0d90435d

+22 -9
+5
.changeset/thirty-olives-kneel.md
··· 1 + --- 2 + '@hey-api/openapi-ts': patch 3 + --- 4 + 5 + fix: export utils
+1 -1
README.md
··· 35 35 36 36 ## Migration Guides 37 37 38 - [OpenAPI Typescript Codegen](https://heyapi.dev/openapi-ts/migrating.html#openapi-typescript-codegen). 38 + [OpenAPI Typescript Codegen](https://heyapi.dev/openapi-ts/migrating.html#openapi-typescript-codegen)
+1 -1
packages/client-axios/README.md
··· 36 36 37 37 ## Migration Guides 38 38 39 - [OpenAPI Typescript Codegen](https://heyapi.dev/openapi-ts/migrating.html#openapi-typescript-codegen). 39 + [OpenAPI Typescript Codegen](https://heyapi.dev/openapi-ts/migrating.html#openapi-typescript-codegen)
+1 -1
packages/client-fetch/README.md
··· 36 36 37 37 ## Migration Guides 38 38 39 - [OpenAPI Typescript Codegen](https://heyapi.dev/openapi-ts/migrating.html#openapi-typescript-codegen). 39 + [OpenAPI Typescript Codegen](https://heyapi.dev/openapi-ts/migrating.html#openapi-typescript-codegen)
+1 -1
packages/openapi-ts/README.md
··· 35 35 36 36 ## Migration Guides 37 37 38 - [OpenAPI Typescript Codegen](https://heyapi.dev/openapi-ts/migrating.html#openapi-typescript-codegen). 38 + [OpenAPI Typescript Codegen](https://heyapi.dev/openapi-ts/migrating.html#openapi-typescript-codegen)
+2 -5
packages/openapi-ts/src/index.ts
··· 545 545 */ 546 546 export const defineConfig = (config: UserConfig): UserConfig => config; 547 547 548 - export default { 549 - createClient, 550 - defineConfig, 551 - }; 552 - 553 548 export type { IR } from './ir/types'; 554 549 export type { OpenApi } from './openApi/types'; 555 550 export type { Plugin } from './plugins/types'; 556 551 export type { UserConfig } from './types/config'; 552 + export type { LegacyIR } from './types/types'; 553 + export { utils } from './utils/exports';
+5
packages/openapi-ts/src/types/types.d.ts
··· 1 + import type { Operation } from './client'; 2 + 3 + export namespace LegacyIR { 4 + export type LegacyOperation = Operation; 5 + }
+6
packages/openapi-ts/src/utils/exports.ts
··· 1 + import { stringCase } from './stringCase'; 2 + 3 + // publicly exposed utils 4 + export const utils = { 5 + stringCase, 6 + };