@scalar/fastify-api-reference 1.25.120 → 1.25.121
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 +6 -0
- package/dist/index.js +1 -4
- package/dist/js/standalone.js +7579 -7486
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -18713,7 +18713,6 @@ function leven(first, second) {
|
|
|
18713
18713
|
return result;
|
|
18714
18714
|
}
|
|
18715
18715
|
class BaseValidationError {
|
|
18716
|
-
// eslint-disable-next-line default-param-last
|
|
18717
18716
|
constructor(options = { isIdentifierLocation: false }, { data, schema: schema2, jsonAst, jsonRaw }) {
|
|
18718
18717
|
this.options = options;
|
|
18719
18718
|
this.data = data;
|
|
@@ -18728,9 +18727,7 @@ class BaseValidationError {
|
|
|
18728
18727
|
return typeof this.options.instancePath !== "undefined" ? this.options.instancePath : this.options.dataPath;
|
|
18729
18728
|
}
|
|
18730
18729
|
getError() {
|
|
18731
|
-
throw new Error(
|
|
18732
|
-
`Implement the 'getError' method inside ${this.constructor.name}!`
|
|
18733
|
-
);
|
|
18730
|
+
throw new Error(`Implement the 'getError' method inside ${this.constructor.name}!`);
|
|
18734
18731
|
}
|
|
18735
18732
|
}
|
|
18736
18733
|
class EnumValidationError extends BaseValidationError {
|