Skip to content

v2.0.0

Compare
Choose a tag to compare
@Pentadome Pentadome released this 03 Jul 12:48
· 20 commits to master since this release

compare changes

Breaking changes

Removed autoImport property from module and api config.

Use clients: { nuxt: { autoImport: false }} to disable auto imports instead.

The openAPITS config of the api config now gets merged with the module config.

Example:

openAPIWrapper: {
    openApiTsConfig: { immutable: true },
    apis: {
      github: {
        openApiTsConfig: { additionalProperties: true }
    },
  },

Before 2.0.0

effective config: { additionalProperties: true }

After 2.0.0

effective config: { immutable: true, additionalProperties: true }

🚀 Enhancements

🩹 Fixes

  • Minor mistake in readme.md (dcaf1d8)

❤️ Contributors