@hestia-earth/ui-components 0.41.55 → 0.41.56
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.
|
@@ -7470,8 +7470,8 @@ class HeNodeService {
|
|
|
7470
7470
|
params: filterParams({ dataState })
|
|
7471
7471
|
});
|
|
7472
7472
|
}
|
|
7473
|
-
async triggerPipeline({ dataState, ...node }) {
|
|
7474
|
-
return await lastValueFrom(this.http.post(`${this.nodeUrl(node)}/pipeline`, filterParams({ dataState }), {})).catch(handleAPIError);
|
|
7473
|
+
async triggerPipeline({ dataState, aggregated, ...node }) {
|
|
7474
|
+
return await lastValueFrom(this.http.post(`${this.nodeUrl(node)}/pipeline`, filterParams({ dataState, aggregated }), {})).catch(handleAPIError);
|
|
7475
7475
|
}
|
|
7476
7476
|
downloadRaw$(url, responseType = 'json') {
|
|
7477
7477
|
return this.http.get(url, { responseType }).pipe(catchError(() => of((responseType === 'json' ? {} : ''))));
|