@scalar/fastify-api-reference 1.32.1 → 1.32.5
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 +22 -0
- package/README.md +1 -1
- package/dist/fastifyApiReference.js +9 -9
- package/dist/fastifyApiReference.js.map +2 -2
- package/dist/js/standalone.js +15738 -15439
- package/dist/types.d.ts +2 -2
- package/package.json +7 -7
package/dist/types.d.ts
CHANGED
|
@@ -6,8 +6,8 @@ import type { HtmlRenderingConfiguration } from '@scalar/core/libs/html-renderin
|
|
|
6
6
|
export type ApiReferenceConfiguration = HtmlRenderingConfiguration;
|
|
7
7
|
export type FastifyApiReferenceOptions = {
|
|
8
8
|
/**
|
|
9
|
-
* If you
|
|
10
|
-
* It
|
|
9
|
+
* If you're prefixing Fastify with a path, you can set it here.
|
|
10
|
+
* It'll be added to the JavaScript URL and the route.
|
|
11
11
|
*
|
|
12
12
|
* Example: `${publicPath}${routePrefix}/js/scalar.js`
|
|
13
13
|
* @deprecated We don't use this anymore.
|
package/package.json
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"openapi",
|
|
18
18
|
"swagger"
|
|
19
19
|
],
|
|
20
|
-
"version": "1.32.
|
|
20
|
+
"version": "1.32.5",
|
|
21
21
|
"engines": {
|
|
22
22
|
"node": ">=20"
|
|
23
23
|
},
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"fastify-plugin": "^4.5.1",
|
|
41
41
|
"github-slugger": "^2.0.0",
|
|
42
|
-
"@scalar/core": "0.3.
|
|
43
|
-
"@scalar/openapi-
|
|
44
|
-
"@scalar/openapi-
|
|
42
|
+
"@scalar/core": "0.3.7",
|
|
43
|
+
"@scalar/openapi-parser": "0.18.1",
|
|
44
|
+
"@scalar/openapi-types": "0.3.5"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@fastify/basic-auth": "^5.1.1",
|
|
@@ -54,10 +54,10 @@
|
|
|
54
54
|
"terser": "^5.30.0",
|
|
55
55
|
"vite": "5.4.19",
|
|
56
56
|
"vite-plugin-static-copy": "^1.0.2",
|
|
57
|
-
"vitest": "^1.6.
|
|
57
|
+
"vitest": "^1.6.1",
|
|
58
58
|
"yaml": "2.8.0",
|
|
59
|
-
"@scalar/api-reference": "1.32.
|
|
60
|
-
"@scalar/build-tooling": "0.2.
|
|
59
|
+
"@scalar/api-reference": "1.32.5",
|
|
60
|
+
"@scalar/build-tooling": "0.2.4"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"build": "scalar-build-esbuild && pnpm copy:standalone",
|