@punks/backend-entity-manager 0.0.448 → 0.0.449
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 +0 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +0 -3
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -259,7 +259,6 @@ class EntitySerializer {
|
|
|
259
259
|
}
|
|
260
260
|
async parse(data, format, payload) {
|
|
261
261
|
const context = await this.getContext();
|
|
262
|
-
console.log("/serializer/base/parse", payload);
|
|
263
262
|
const definition = await this.getDefinition(context, payload);
|
|
264
263
|
switch (format) {
|
|
265
264
|
case exports.EntitySerializationFormat.Csv:
|
|
@@ -356,7 +355,6 @@ class EntitySerializer {
|
|
|
356
355
|
refDate: new Date(),
|
|
357
356
|
});
|
|
358
357
|
const context = await this.getContext();
|
|
359
|
-
console.log("buildSampleFile", "definition call");
|
|
360
358
|
const definition = await this.getDefinition(context);
|
|
361
359
|
switch (format) {
|
|
362
360
|
case exports.EntitySerializationFormat.Csv:
|
|
@@ -423,7 +421,6 @@ class EntitySerializer {
|
|
|
423
421
|
refDate: new Date(),
|
|
424
422
|
});
|
|
425
423
|
const context = await this.getContext();
|
|
426
|
-
console.log("buildExportFile", "definition call");
|
|
427
424
|
const definition = await this.getDefinition(context);
|
|
428
425
|
switch (format) {
|
|
429
426
|
case exports.EntitySerializationFormat.Csv:
|