@punks/backend-entity-manager 0.0.462 → 0.0.463

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 CHANGED
@@ -250,9 +250,9 @@ class EntitySerializer {
250
250
  this.entityName = services.getEntityName();
251
251
  this.logger = backendCore.Log.getLogger(`${services.getEntityName()} -> Serializer`);
252
252
  }
253
- async export(filters) {
253
+ async export(filters, payload) {
254
254
  const entities = await this.loadEntities(filters ?? {});
255
- return await this.convertToSheetItems(entities);
255
+ return await this.convertToSheetItems(entities, payload);
256
256
  }
257
257
  async import(items, payload) {
258
258
  this.logger.info(`Entities import -> started (${items.length} items)`);