@minatojs/driver-mysql
Advanced tools
Comparing version 2.4.1 to 2.4.2
@@ -451,3 +451,6 @@ "use strict"; | ||
}); | ||
const initFields = Object.keys(model.fields); | ||
const initFields = Object.keys(model.fields).filter((key) => { | ||
var _a; | ||
return !((_a = model.fields[key]) == null ? void 0 : _a.deprecated); | ||
}); | ||
const dataFields = [...new Set(Object.keys(merged).map((key) => { | ||
@@ -454,0 +457,0 @@ return initFields.find((field) => field === key || key.startsWith(field + ".")); |
{ | ||
"name": "@minatojs/driver-mysql", | ||
"version": "2.4.1", | ||
"version": "2.4.2", | ||
"description": "MySQL Driver for Minato", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
51231
552