@scalar/fastify-api-reference 1.24.15 → 1.24.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @scalar/fastify-api-reference
2
2
 
3
+ ## 1.24.16
4
+
3
5
  ## 1.24.15
4
6
 
5
7
  ## 1.24.14
package/README.md CHANGED
@@ -40,7 +40,7 @@ fastify.register(require('@scalar/fastify-api-reference'), {
40
40
  })
41
41
  ```
42
42
 
43
- With the [@fastify/swagger](https://github.com/fastify/fastify-swagger) you can even generate your Swagger spec from the registered routes and directly pass it to the plugin:
43
+ With [@fastify/swagger](https://github.com/fastify/fastify-swagger) you can even generate your OpenAPI documents from the registered routes and directly pass it to the plugin:
44
44
 
45
45
  ```ts
46
46
  await fastify.register(require('@scalar/fastify-api-reference'), {
@@ -74,7 +74,9 @@ await fastify.register(require('@scalar/fastify-api-reference'), {
74
74
  })
75
75
  ```
76
76
 
77
- The fastify plugin takes our universal configuration object, [read more about configuration](https://github.com/scalar/scalar/tree/main/packages/api-reference#configuration) in the core package README.
77
+ We wrote a [detailed integration guide for Fastify](https://github.com/scalar/scalar/tree/main/documentation/fastify.md).
78
+
79
+ The fastify plugin takes our universal configuration object, [read more about configuration](https://github.com/scalar/scalar/tree/main/documentation/configuration.md) in the core package README.
78
80
 
79
81
  ## Themes
80
82