@punks/backend-entity-manager 0.0.431 → 0.0.432
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 +3 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +3 -4
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -274,11 +274,12 @@ class EntitySerializer {
|
|
|
274
274
|
}
|
|
275
275
|
const entity = (definition.autoColumns ? { ...record } : {});
|
|
276
276
|
for (const column of definition.columns) {
|
|
277
|
-
if (!(column.name in record))
|
|
278
|
-
continue;
|
|
279
277
|
const columnName = normalizeSheetColumn(column.name);
|
|
278
|
+
if (!(columnName in record))
|
|
279
|
+
continue;
|
|
280
280
|
if (column.parseAction) {
|
|
281
281
|
column.parseAction(record[columnName], entity);
|
|
282
|
+
delete record[column.name];
|
|
282
283
|
continue;
|
|
283
284
|
}
|
|
284
285
|
if (typeof column.selector === "function") {
|
|
@@ -294,8 +295,6 @@ class EntitySerializer {
|
|
|
294
295
|
}
|
|
295
296
|
const validationErrors = [];
|
|
296
297
|
for (const column of definition.columns) {
|
|
297
|
-
if (!(column.name in record))
|
|
298
|
-
continue;
|
|
299
298
|
for (const validator of column.validators ?? []) {
|
|
300
299
|
const result = validator.fn(entity);
|
|
301
300
|
if (!result.isValid) {
|