@punks/backend-entity-manager 0.0.434 → 0.0.435
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/dist/cjs/index.js +1 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -3
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -305,9 +305,7 @@ class EntitySerializer {
|
|
|
305
305
|
.map((x) => applyModifiers(x, column.modifiers))
|
|
306
306
|
.filter((x) => isValidValue(x))
|
|
307
307
|
: applyModifiers(parsedColumn, column.modifiers);
|
|
308
|
-
|
|
309
|
-
console.log("entity", entity);
|
|
310
|
-
// delete entity[column.name]
|
|
308
|
+
delete entity[column.name];
|
|
311
309
|
}
|
|
312
310
|
const validationErrors = [];
|
|
313
311
|
for (const column of definition.columns) {
|