@scalar/fastify-api-reference 0.7.0 → 0.7.1
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
|
@@ -28961,7 +28961,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
28961
28961
|
if (typeof v != "string")
|
|
28962
28962
|
return "";
|
|
28963
28963
|
let O = v.trim();
|
|
28964
|
-
return O.startsWith("/") && (O = O.slice(1)), O;
|
|
28964
|
+
return O.length > 1 && O.startsWith("/") && (O = O.slice(1)), O;
|
|
28965
28965
|
})(t.path), [a, ...s] = ((v, O) => typeof O == "string" && O.length ? [v.endsWith("/") ? v : `${v}/`, O.startsWith("/") ? O.slice(1) : O].join("") : v)(o, i).split("?"), l = ((v, O) => Object.entries(O).reduce((x, [y, S]) => x.replace(`{${y}}`, S.toString()), v))(a, Wp(t.parameters ?? [], "name", "value")), c = [];
|
|
28966
28966
|
s.forEach((v) => {
|
|
28967
28967
|
new URLSearchParams(v ?? "").forEach((O, x) => {
|
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"openapi",
|
|
13
13
|
"swagger"
|
|
14
14
|
],
|
|
15
|
-
"version": "0.7.
|
|
15
|
+
"version": "0.7.1",
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">=20"
|
|
18
18
|
},
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"ejs": "^3.1.9",
|
|
38
38
|
"terser": "^5.24.0",
|
|
39
|
-
"@scalar/api-reference": "1.2.
|
|
39
|
+
"@scalar/api-reference": "1.2.7"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@rollup/plugin-terser": "^0.4.4",
|