@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @scalar/fastify-api-reference
2
2
 
3
+ ## 1.25.121
4
+
5
+ ### Patch Changes
6
+
7
+ - @scalar/types@0.0.34
8
+
3
9
  ## 1.25.120
4
10
 
5
11
  ### Patch Changes
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 {