Skip to content

@hey-api/client-nuxt@0.2.0

Compare
Choose a tag to compare
@github-actions github-actions released this 02 Feb 10:37
· 46 commits to main since this release
d0af19e

Minor Changes

  • #1661 bb6d46a Thanks @mrlubos! - fix: make createConfig, CreateClientConfig, and Config accept ClientOptions generic

    Added ClientOptions interface

    The Config interface now accepts an optional generic extending ClientOptions instead of boolean type ThrowOnError.

    type Foo = Config<false>; // [!code --]
    type Foo = Config<{ throwOnError: false }>; // [!code ++]