@punks/backend-entity-manager 0.0.93 → 0.0.94

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
@@ -1004,11 +1004,11 @@ class EntitiesImportCommand {
1004
1004
  }
1005
1005
  async execute(input) {
1006
1006
  await this.uploadImportFile({
1007
- content: input.content,
1008
- contentType: input.contentType,
1009
- fileName: input.fileName,
1007
+ content: input.file.content,
1008
+ contentType: input.file.contentType,
1009
+ fileName: input.file.fileName,
1010
1010
  });
1011
- const importEntities = await this.parseImportFile(input.content, input.format);
1011
+ const importEntities = await this.parseImportFile(input.file.content, input.format);
1012
1012
  for (const entry of importEntities) {
1013
1013
  await this.importEntity(entry);
1014
1014
  }