@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/esm/index.js CHANGED
@@ -290,9 +290,7 @@ class EntitySerializer {
290
290
  .map((x) => applyModifiers(x, column.modifiers))
291
291
  .filter((x) => isValidValue(x))
292
292
  : applyModifiers(parsedColumn, column.modifiers);
293
- console.log("name", column.name);
294
- console.log("entity", entity);
295
- // delete entity[column.name]
293
+ delete entity[column.name];
296
294
  }
297
295
  const validationErrors = [];
298
296
  for (const column of definition.columns) {