@punks/backend-entity-manager 0.0.450 → 0.0.451
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 +4 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/abstractions/serializer.d.ts +1 -1
- package/dist/esm/index.js +4 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/abstractions/serializer.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -921,8 +921,10 @@ class EntitiesExportCommand {
|
|
|
921
921
|
},
|
|
922
922
|
};
|
|
923
923
|
}
|
|
924
|
-
async buildExportFile(data, format) {
|
|
925
|
-
return await this.services
|
|
924
|
+
async buildExportFile(data, format, payload) {
|
|
925
|
+
return await this.services
|
|
926
|
+
.resolveSerializer()
|
|
927
|
+
.serialize(data, format, payload);
|
|
926
928
|
}
|
|
927
929
|
async uploadExportFile(file) {
|
|
928
930
|
await this.bucket.fileUpload({
|