@trudb/tru-common-lib 0.0.258 → 0.0.260
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/esm2020/lib/classes/tru-query-predicate-manager.mjs +19 -30
- package/fesm2015/trudb-tru-common-lib.mjs +18 -29
- package/fesm2015/trudb-tru-common-lib.mjs.map +1 -1
- package/fesm2020/trudb-tru-common-lib.mjs +18 -29
- package/fesm2020/trudb-tru-common-lib.mjs.map +1 -1
- package/lib/classes/tru-query-predicate-manager.d.ts +12 -21
- package/package.json +1 -1
|
@@ -6,30 +6,21 @@ export declare class TruQueryPredicateManager {
|
|
|
6
6
|
_predicateMap: any;
|
|
7
7
|
constructor(propertyQueryPath: Array<string>, predicateName: string, predicateMap: any);
|
|
8
8
|
private setPredicate;
|
|
9
|
-
/**
|
|
10
|
-
* Returns a new query predicate.
|
|
11
|
-
*
|
|
12
|
-
* @param {string} field - Name of the storage field relative to the intent property.
|
|
13
|
-
* @param {string} operator - Name of the predicate operator.
|
|
14
|
-
* @param {*} value - Literal value.
|
|
15
|
-
*/
|
|
16
|
-
create: (field: string, operator: string, value: any, overQuoted: boolean) => any;
|
|
17
|
-
/**
|
|
18
|
-
* Clears the query predicate.
|
|
19
|
-
*/
|
|
20
|
-
clear: () => void;
|
|
21
9
|
/**
|
|
22
10
|
* Returns the query predicate.
|
|
23
11
|
*/
|
|
24
12
|
get: () => TruPredicate | null;
|
|
25
13
|
/**
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
14
|
+
* Clears the query predicate.
|
|
15
|
+
*/
|
|
16
|
+
clear: () => void;
|
|
17
|
+
set: (queryPredicate: TruPredicate) => void;
|
|
18
|
+
/**
|
|
19
|
+
* Returns a new query predicate.
|
|
20
|
+
*
|
|
21
|
+
* @param {string} field - Name of the storage field relative to the intent property.
|
|
22
|
+
* @param {string} operator - Name of the predicate operator.
|
|
23
|
+
* @param {*} value - Literal value.
|
|
24
|
+
*/
|
|
25
|
+
create: (field: string, operator: string, value: any, overQuoted: boolean) => any;
|
|
35
26
|
}
|