@punks/backend-entity-manager 0.0.432 → 0.0.433
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 +2 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -275,7 +275,8 @@ class EntitySerializer {
|
|
|
275
275
|
const entity = (definition.autoColumns ? { ...record } : {});
|
|
276
276
|
for (const column of definition.columns) {
|
|
277
277
|
const columnName = normalizeSheetColumn(column.name);
|
|
278
|
-
|
|
278
|
+
console.log(columnName, column.name, record);
|
|
279
|
+
if (!(column.name in record))
|
|
279
280
|
continue;
|
|
280
281
|
if (column.parseAction) {
|
|
281
282
|
column.parseAction(record[columnName], entity);
|