@scalar/fastify-api-reference 1.25.114 → 1.25.116
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 +10 -0
- package/dist/fastifyApiReference.d.ts +1 -1
- package/dist/fastifyApiReference.d.ts.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/js/standalone.js +10903 -10880
- package/package.json +4 -4
- package/dist/utils/index.d.ts +0 -2
- package/dist/utils/index.d.ts.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { default } from './fastifyApiReference';
|
|
2
|
-
export * from './types';
|
|
1
|
+
export { default } from './fastifyApiReference.ts';
|
|
2
|
+
export * from './types.ts';
|
|
3
3
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AAClD,cAAc,YAAY,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -18570,7 +18570,7 @@ const isXError = (x) => (error2) => error2.keyword === x;
|
|
|
18570
18570
|
const isRequiredError = isXError("required");
|
|
18571
18571
|
const isAnyOfError = isXError("anyOf");
|
|
18572
18572
|
const isEnumError = isXError("enum");
|
|
18573
|
-
const getErrors = (node) => node
|
|
18573
|
+
const getErrors = (node) => (node == null ? void 0 : node.errors) || [];
|
|
18574
18574
|
const getChildren = (node) => node && getValues(node.children) || [];
|
|
18575
18575
|
const getSiblings = (parent) => (node) => getChildren(parent).filter(not(eq(node)));
|
|
18576
18576
|
const concatAll = (
|