Skip to content

Releases: hey-api/openapi-ts

@hey-api/[email protected]

18 Dec 01:45
fca7854
Compare
Choose a tag to compare

Patch Changes

@hey-api/[email protected]

17 Dec 21:06
326109e
Compare
Choose a tag to compare

Minor Changes

  • #1430 9cec9e8 Thanks @mrlubos! - fix: require sdk.transformer to use generated transformers

    Added sdk.transformer option

    When generating SDKs, you now have to specify transformer in order to modify response data. By default, adding @hey-api/transformers to your plugins will only produce additional output. To preserve the previous functionality, set sdk.transformer to true.

    import { defaultPlugins } from '@hey-api/openapi-ts';
    
    export default {
      client: '@hey-api/client-fetch',
      input: 'path/to/openapi.json',
      output: 'src/client',
      plugins: [
        ...defaultPlugins,
        {
          dates: true,
          name: '@hey-api/transformers',
        },
        {
          name: '@hey-api/sdk',
          transformer: true, // [!code ++]
        },
      ],
    };
  • #1447 200821b Thanks @mrlubos! - fix: revert license to MIT

Patch Changes

@hey-api/[email protected]

17 Dec 21:06
326109e
Compare
Choose a tag to compare

Patch Changes

@hey-api/[email protected]

17 Dec 21:05
326109e
Compare
Choose a tag to compare

Patch Changes

@hey-api/[email protected]

12 Dec 14:31
1f39b73
Compare
Choose a tag to compare

Patch Changes

@hey-api/[email protected]

12 Dec 19:02
8095505
Compare
Choose a tag to compare

Patch Changes

@hey-api/[email protected]

12 Dec 14:31
1f39b73
Compare
Choose a tag to compare

Patch Changes

@hey-api/[email protected]

12 Dec 19:02
8095505
Compare
Choose a tag to compare

Patch Changes

@hey-api/[email protected]

12 Dec 14:30
1f39b73
Compare
Choose a tag to compare

Minor Changes

  • #1420 8010dbb Thanks @mrlubos! - feat: handle parameter styles the same way fetch client does if paramsSerializer is undefined

Patch Changes

@hey-api/[email protected]

06 Dec 17:52
eae21a2
Compare
Choose a tag to compare

Patch Changes