@shieldiot/ngx-pulseiot-lib 2.18.1121 → 2.18.1122
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/esm2022/lib/services/UsrInsightsService.mjs +1 -1
- package/esm2022/lib/services/UsrReportsInstanceService.mjs +1 -1
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs.map +1 -1
- package/lib/services/UsrInsightsService.d.ts +3 -3
- package/lib/services/UsrReportsInstanceService.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
-
import { EntitiesResponse } from '../model';
|
|
4
|
-
import { Insight } from '../model';
|
|
5
3
|
import { InsightTypeCode } from '../model';
|
|
6
4
|
import { SeverityTypeCode } from '../model';
|
|
7
5
|
import { EntityResponse } from '../model';
|
|
8
6
|
import { Distribution } from '../model';
|
|
7
|
+
import { EntitiesResponse } from '../model';
|
|
8
|
+
import { Insight } from '../model';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class UsrInsightsService {
|
|
11
11
|
private config;
|
|
@@ -15,7 +15,7 @@ export declare class UsrInsightsService {
|
|
|
15
15
|
/**
|
|
16
16
|
* Find daily insights
|
|
17
17
|
*/
|
|
18
|
-
getDailyInsights(dayId?:
|
|
18
|
+
getDailyInsights(dayId?: string): import("rxjs").Observable<EntitiesResponse<Insight>>;
|
|
19
19
|
/**
|
|
20
20
|
* Find insights by query
|
|
21
21
|
*/
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
+
import { ReportSourceCode } from '../model';
|
|
4
|
+
import { EntitiesResponse } from '../model';
|
|
3
5
|
import { ReportInstance } from '../model';
|
|
4
6
|
import { EntityResponse } from '../model';
|
|
5
7
|
import { ActionResponse } from '../model';
|
|
6
|
-
import { ReportSourceCode } from '../model';
|
|
7
|
-
import { EntitiesResponse } from '../model';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class UsrReportsInstanceService {
|
|
10
10
|
private config;
|
|
@@ -26,7 +26,7 @@ export declare class UsrReportsInstanceService {
|
|
|
26
26
|
/**
|
|
27
27
|
* Find reports by query
|
|
28
28
|
*/
|
|
29
|
-
find(accountId?: string, search?: string, sort?: string, page?: number, size?: number, from?: number, to?: number, reportTriggerSource?: ReportSourceCode): import("rxjs").Observable<EntitiesResponse<ReportInstance>>;
|
|
29
|
+
find(accountId?: string, search?: string, sort?: string, page?: number, size?: number, from?: number, to?: number, reportTriggerSource?: ReportSourceCode[]): import("rxjs").Observable<EntitiesResponse<ReportInstance>>;
|
|
30
30
|
/**
|
|
31
31
|
* Download report file as stream of PDF
|
|
32
32
|
*/
|