@middy/validator 6.4.2 → 6.4.3
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/package.json +3 -3
- package/transpile.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@middy/validator",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.3",
|
|
4
4
|
"description": "Validator middleware for the middy framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"url": "https://github.com/sponsors/willfarrell"
|
|
75
75
|
},
|
|
76
76
|
"dependencies": {
|
|
77
|
-
"@middy/util": "6.4.
|
|
77
|
+
"@middy/util": "6.4.3",
|
|
78
78
|
"ajv": "8.17.1",
|
|
79
79
|
"ajv-errors": "3.0.0",
|
|
80
80
|
"ajv-formats": "3.0.1",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"ajv-keywords": "5.1.0"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
|
-
"@middy/core": "6.4.
|
|
86
|
+
"@middy/core": "6.4.3",
|
|
87
87
|
"@types/http-errors": "^2.0.0",
|
|
88
88
|
"ajv-bsontype": "^1.0.7",
|
|
89
89
|
"ajv-cmd": "^0.8.0"
|
package/transpile.js
CHANGED
|
@@ -20,10 +20,10 @@ export const transpileSchema = (schema, ajvOptions) => {
|
|
|
20
20
|
export const transpileLocale = transpileFTL
|
|
21
21
|
*/
|
|
22
22
|
|
|
23
|
+
import ajvFormatsDraft2019 from "@silverbucket/ajv-formats-draft2019";
|
|
23
24
|
import Ajv from "ajv/dist/2020.js";
|
|
24
25
|
import ajvErrors from "ajv-errors";
|
|
25
26
|
import ajvFormats from "ajv-formats";
|
|
26
|
-
import ajvFormatsDraft2019 from "ajv-formats-draft2019";
|
|
27
27
|
import { transpile } from "ajv-ftl-i18n";
|
|
28
28
|
import ajvKeywords from "ajv-keywords";
|
|
29
29
|
|