@punks/backend-entity-manager 0.0.451 → 0.0.453

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
@@ -589,7 +589,9 @@ class EntitiesExportAction {
589
589
  }
590
590
  async execute(input) {
591
591
  this.logger.debug("Export action started", { input });
592
- const result = await this.services.resolveExportCommand().execute(input);
592
+ const result = await this.services
593
+ .resolveExportCommand()
594
+ .execute(input);
593
595
  this.logger.debug("Export action completed", { input });
594
596
  return result;
595
597
  }
@@ -910,7 +912,7 @@ class EntitiesExportCommand {
910
912
  }
911
913
  async execute(input) {
912
914
  const sheetItems = await this.getExportSheetItems(input.filter);
913
- const outputFile = await this.buildExportFile(sheetItems, input.options.format);
915
+ const outputFile = await this.buildExportFile(sheetItems, input.options.format, input.payload);
914
916
  const downloadUrl = await this.uploadExportFile(outputFile);
915
917
  return {
916
918
  downloadUrl,