@hestia-earth/ui-components 0.4.0 → 0.4.1
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/hestia-earth-ui-components.umd.js +4 -4
- package/bundles/hestia-earth-ui-components.umd.js.map +1 -1
- package/esm2015/node/node.service.js +5 -5
- package/fesm2015/hestia-earth-ui-components.js +4 -4
- package/fesm2015/hestia-earth-ui-components.js.map +1 -1
- package/node/node.service.d.ts +3 -2
- package/package.json +1 -1
|
@@ -1238,11 +1238,11 @@
|
|
|
1238
1238
|
.catch(function () { return node.dataState && defaultForState ? node : ({}); });
|
|
1239
1239
|
};
|
|
1240
1240
|
HeNodeService.prototype.getLog = function (_a) {
|
|
1241
|
-
var dataState = _a.dataState, node = __rest(_a, ["dataState"]);
|
|
1241
|
+
var dataState = _a.dataState, aggregated = _a.aggregated, node = __rest(_a, ["dataState", "aggregated"]);
|
|
1242
1242
|
return this.http.get(this.nodeUrl(node) + "/log", {
|
|
1243
1243
|
headers: this.authService.headers,
|
|
1244
1244
|
responseType: 'text',
|
|
1245
|
-
params: filterParams({ dataState: dataState })
|
|
1245
|
+
params: filterParams({ dataState: dataState, aggregated: aggregated })
|
|
1246
1246
|
}).pipe(operators.catchError(function () { return rxjs.of(''); }));
|
|
1247
1247
|
};
|
|
1248
1248
|
HeNodeService.prototype.getMissingLookupsLog = function (_a) {
|
|
@@ -1253,10 +1253,10 @@
|
|
|
1253
1253
|
}).toPromise().catch(handleAPIError);
|
|
1254
1254
|
};
|
|
1255
1255
|
HeNodeService.prototype.getErrorLog = function (_a) {
|
|
1256
|
-
var dataState = _a.dataState, node = __rest(_a, ["dataState"]);
|
|
1256
|
+
var dataState = _a.dataState, aggregated = _a.aggregated, node = __rest(_a, ["dataState", "aggregated"]);
|
|
1257
1257
|
return this.http.get(this.nodeUrl(node) + "/log/error", {
|
|
1258
1258
|
headers: this.authService.headers,
|
|
1259
|
-
params: filterParams({ dataState: dataState })
|
|
1259
|
+
params: filterParams({ dataState: dataState, aggregated: aggregated })
|
|
1260
1260
|
}).toPromise().catch(handleAPIError);
|
|
1261
1261
|
};
|
|
1262
1262
|
HeNodeService.prototype.triggerPipeline = function (_a) {
|