@shieldiot/ngx-pulseiot-lib 2.18.1162 → 2.18.1164
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/SysRulesService.mjs +4 -7
- package/esm2022/lib/services/UsrRulesService.mjs +8 -4
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs +10 -9
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs.map +1 -1
- package/lib/services/SysRulesService.d.ts +1 -1
- package/lib/services/UsrRulesService.d.ts +2 -2
- package/package.json +1 -1
|
@@ -32,7 +32,7 @@ export declare class SysRulesService {
|
|
|
32
32
|
/**
|
|
33
33
|
* Find rules by query
|
|
34
34
|
*/
|
|
35
|
-
find(
|
|
35
|
+
find(streamId?: string, search?: string, sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Rule>>;
|
|
36
36
|
/**
|
|
37
37
|
* Analyze rule configuration against historic data
|
|
38
38
|
*/
|
|
@@ -38,9 +38,9 @@ export declare class UsrRulesService {
|
|
|
38
38
|
*/
|
|
39
39
|
getWithSQL(id?: string): import("rxjs").Observable<EntityResponse<RuleWithSQL>>;
|
|
40
40
|
/**
|
|
41
|
-
* Get
|
|
41
|
+
* Get all active rules from stream id with computed SQL statement
|
|
42
42
|
*/
|
|
43
|
-
getWithSQLByStreamId(
|
|
43
|
+
getWithSQLByStreamId(streamId?: string): import("rxjs").Observable<EntitiesResponse<RuleWithSQL>>;
|
|
44
44
|
/**
|
|
45
45
|
* Find rules by query
|
|
46
46
|
*/
|