Skip to content

Releases: Pentadome/nuxt-openAPI-wrapper

v3.0.1

12 Sep 21:15
Compare
Choose a tag to compare

compare changes

🩹 Fixes

  • Change default type for UseFetch to undefined (cf31ec7)
  • Link in readme.md (55afec8)

💅 Refactors

  • Remove commented-out useFetch function for clarity (ee97b0f)

🏡 Chore

❤️ Contributors

v3.0.0

09 Sep 11:21
Compare
Choose a tag to compare

compare changes

Feat

  • Added support for Nuxt 4

❤️ Contributors

v2.0.4

15 Aug 17:46
Compare
Choose a tag to compare

compare changes

🩹 Fixes

  • Allow setting query and header when they are defined as undefined (f0eb55d)

🏡 Chore

❤️ Contributors

v2.0.3

25 Jul 13:26
Compare
Choose a tag to compare

compare changes

🩹 Fixes

  • Mistake in HasRequiredProperties type (1e5be5a)

❤️ Contributors

v2.0.2

25 Jul 13:12
Compare
Choose a tag to compare

compare changes

🩹 Fixes

  • Missing autocomplete for query params when all query params are optional (c12959f)

❤️ Contributors

v2.0.1

04 Jul 08:17
Compare
Choose a tag to compare

compare changes

🩹 Fixes

  • Sometimes not working in docker. (37510a9)

❤️ Contributors

v2.0.0

03 Jul 12:48
Compare
Choose a tag to compare

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

v1.1.1

16 Jun 11:26
Compare
Choose a tag to compare

compare changes

🩹 Fixes

  • Sometimes type error while using refs with queries (de6b7d2)

❤️ Contributors

v1.1.0

15 Jun 15:52
Compare
Choose a tag to compare

compare changes

🚀 Enhancements

  • Add typesafe error response (2114d7b)

❤️ Contributors

v1.0.16

13 Jun 12:36
Compare
Choose a tag to compare

compare changes

🩹 Fixes

  • Uppercase method not working in useFetch functions (c026090)

❤️ Contributors