@eo-sdk/client 7.16.9 → 7.16.10
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/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +3 -3
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js.map +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js.map +1 -1
- package/bundles/eo-sdk-client.umd.js +2 -2
- package/bundles/eo-sdk-client.umd.js.map +1 -1
- package/bundles/eo-sdk-client.umd.min.js +1 -1
- package/bundles/eo-sdk-client.umd.min.js.map +1 -1
- package/esm2015/app/eo-client/about-state/about-state.component.js +3 -3
- package/esm2015/projects/eo-sdk/core/lib/service/search/search.service.js +4 -4
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +3 -3
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
- package/fesm2015/eo-sdk-client.js +2 -2
- package/fesm2015/eo-sdk-client.js.map +1 -1
- package/package.json +2 -2
- package/projects/eo-sdk/core/package.json +1 -1
|
@@ -5481,13 +5481,13 @@
|
|
|
5481
5481
|
return this.backend
|
|
5482
5482
|
.post('/export', queryJson, this.backend.getSearchBase(), {
|
|
5483
5483
|
observe: 'response',
|
|
5484
|
-
responseType: '
|
|
5484
|
+
responseType: 'blob'
|
|
5485
5485
|
})
|
|
5486
5486
|
.pipe(operators.tap(function (res) {
|
|
5487
5487
|
var blob = new Blob([res.body], {
|
|
5488
|
-
type: 'text/
|
|
5488
|
+
type: 'text/csv;charset=utf-8'
|
|
5489
5489
|
});
|
|
5490
|
-
FileSaver.saveAs(blob, _this.getFileNameFromHttpResponse(res));
|
|
5490
|
+
FileSaver.saveAs(blob, _this.getFileNameFromHttpResponse(res), { autoBom: true });
|
|
5491
5491
|
}));
|
|
5492
5492
|
};
|
|
5493
5493
|
SearchService.prototype.getFileNameFromHttpResponse = function (res) {
|