Skip to content

Releases: hey-api/openapi-ts

Apr 20th, 2026

20 Apr 09:30
aaba2d9

Choose a tag to compare

@hey-api/openapi-ts 0.96.1

Updates

  • config: warn on duplicated plugin configurations (#3753)
  • output: surface postprocess errors (#3683)
  • parser: re-add implicitly-filtered schemas in collectOperations (#3791)
  • parser: avoid encoding url unsafe characters (#3782)

Plugins

@hey-api/client-angular

  • narrow headers to Headers in ResolvedRequestOptions (#3757)

@hey-api/client-fetch

  • narrow headers to Headers in ResolvedRequestOptions (#3757)

@hey-api/client-ky

  • narrow headers to Headers in ResolvedRequestOptions (#3757)

@hey-api/client-next

  • narrow headers to Headers in ResolvedRequestOptions (#3757)

@hey-api/client-ofetch

  • narrow headers to Headers in ResolvedRequestOptions (#3757)

valibot

  • add support for .variant() (#3780)

zod

  • add support for .discriminatedUnion() (#3780)
  • support generating z.input and z.output types (#3759)

@hey-api/json-schema-ref-parser 1.4.1

Updates

  • parser: avoid encoding url unsafe characters (#3782)

@hey-api/shared 0.4.1

Updates

  • output: surface postprocess errors (#3683)
  • parser: avoid encoding url unsafe characters (#3782)
  • parser: re-add implicitly-filtered schemas in collectOperations (#3791)
  • config: warn on duplicated plugin configurations (#3753)

@hey-api/vite-plugin 0.3.1

Updates

  • api: expose vite options (#3776)

Sponsors

Partners behind the future of API tooling.

Stainless logo
Best-in-class developer interfaces for your API.
stainless.com

Opencode logo
The open source coding agent.
opencode.ai

Become a sponsor →

Contributors

Built with contributions from @inas-sirhan and @sbs44.

View full changelog →

2026-04-13

13 Apr 05:41
6e20279

Choose a tag to compare

@hey-api/openapi-ts 0.96.0

⚠️ Breaking

This release has 1 breaking change. Please review the release notes carefully before upgrading.

Updates

  • ⚠️ Breaking: This release bumps the minimum required Node version to 22.13. (#3694)
  • cli: improve error message on invalid input (#3679)
  • parser: keep orphans when explicitly included in filters (#3714)
  • parser: process enum metadata (#3727)

Plugins

@angular/common

  • requests and resources broken default configuration (#3678)

@hey-api/client-angular

  • simplify SSE line endings normalization (#3686)

@hey-api/client-axios

  • simplify SSE line endings normalization (#3686)

@hey-api/client-fetch

  • simplify SSE line endings normalization (#3686)

@hey-api/client-ky

  • simplify SSE line endings normalization (#3686)

@hey-api/client-next

  • simplify SSE line endings normalization (#3686)

@hey-api/client-nuxt

  • simplify SSE line endings normalization (#3686)

@hey-api/client-ofetch

  • simplify SSE line endings normalization (#3686)

@hey-api/transformers

  • return value for primitive array entries (#3733)

@hey-api/codegen-core 0.8.0

⚠️ Breaking

This release has 1 breaking change. Please review the release notes carefully before upgrading.

Updates

  • ⚠️ Breaking: This release bumps the minimum required Node version to 22.13. (#3694)

@hey-api/json-schema-ref-parser 1.4.0

⚠️ Breaking

This release has 1 breaking change. Please review the release notes carefully before upgrading.

Updates

  • ⚠️ Breaking: This release bumps the minimum required Node version to 22.13. (#3694)
  • internal: export errors (#3679)

@hey-api/shared 0.4.0

⚠️ Breaking

This release has 1 breaking change. Please review the release notes carefully before upgrading.

Updates

  • ⚠️ Breaking: This release bumps the minimum required Node version to 22.13. (#3694)
  • parser: keep orphans when explicitly included in filters (#3714)
  • parser: process enum metadata (#3727)
  • error: handle InputError (#3679)

@hey-api/spec-types 0.2.0

⚠️ Breaking

This release has 2 breaking changes. Please review the release notes carefully before upgrading.

Updates

  • ⚠️ Breaking: remove OpenAPI types from JSON Schema documents (#3715)
  • ⚠️ Breaking: rename OpenAPIExtensions to SpecExtensions (#3715)
  • types: add WithSpecExtensions type (#3734)
  • openapi: stricter 2.0 version type (#3715)
  • types: use mutable arrays (#3715)

@hey-api/vite-plugin 0.3.0

⚠️ Breaking

This release has 1 breaking change. Please review the release notes carefully before upgrading.

Updates

  • ⚠️ Breaking: This package is now ESM-only. (#3688)

Sponsors

Partners behind the future of API tooling.

Stainless logo
Best-in-class developer interfaces for your API.
stainless.com

Opencode logo
The open source coding agent.
opencode.ai

Become a sponsor →

Contributors

Be the first to contribute to the next release! Browse open issues →

View full changelog →

@hey-api/shared@0.3.0

02 Apr 13:22
5e1eaea

Choose a tag to compare

Minor Changes

Removed plugin.getSymbol() function

This function has been removed. You can use plugin.querySymbol() instead. It accepts the same arguments and returns the same result.

Patch Changes

@hey-api/openapi-ts@0.95.0

02 Apr 13:22
5e1eaea

Choose a tag to compare

Minor Changes

Validator request schemas

Valibot plugin no longer exports composite request Data schemas. Instead, each layer is exported as a separate schema. If you're using validators with SDKs, you can preserve the composite schema with shouldExtract:

export default {
  input: "hey-api/backend", // sign up at app.heyapi.dev
  output: "src/client",
  plugins: [
    // ...other plugins
    {
      name: "sdk",
      validator: "valibot",
    },
    {
      name: "valibot",
      requests: {
        shouldExtract: true,
      },
    },
  ],
};

Removed plugin.getSymbol() function

This function has been removed. You can use plugin.querySymbol() instead. It accepts the same arguments and returns the same result.

Validator request schemas

Zod plugin no longer exports composite request Data schemas. Instead, each layer is exported as a separate schema. If you're using validators with SDKs, you can preserve the composite schema with shouldExtract:

export default {
  input: "hey-api/backend", // sign up at app.heyapi.dev
  output: "src/client",
  plugins: [
    // ...other plugins
    {
      name: "sdk",
      validator: "zod",
    },
    {
      name: "zod",
      requests: {
        shouldExtract: true,
      },
    },
  ],
};

Patch Changes

Updated Dependencies:

  • @hey-api/shared@0.3.0

@hey-api/openapi-ts@0.94.4

20 Mar 15:51
bcdd174

Choose a tag to compare

Patch Changes

@hey-api/shared@0.2.5

19 Mar 05:05
d61d2b1

Choose a tag to compare

Patch Changes

Updated Dependencies:

  • @hey-api/codegen-core@0.7.4

@hey-api/openapi-ts@0.94.3

19 Mar 05:05
d61d2b1

Choose a tag to compare

Patch Changes

Updated Dependencies:

  • @hey-api/shared@0.2.5
  • @hey-api/codegen-core@0.7.4

@hey-api/codegen-core@0.7.4

19 Mar 05:05
d61d2b1

Choose a tag to compare

Patch Changes

@hey-api/types@0.1.4

16 Mar 07:36
66642e6

Choose a tag to compare

Patch Changes

@hey-api/shared@0.2.4

16 Mar 07:36
66642e6

Choose a tag to compare

Patch Changes

Updated Dependencies:

  • @hey-api/codegen-core@0.7.3
  • @hey-api/types@0.1.4