@thi.ng/oquery 2.3.13 → 2.3.14
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/CHANGELOG.md +1 -1
- package/api.d.ts +1 -0
- package/package.json +9 -9
- package/query.d.ts +7 -7
package/CHANGELOG.md
CHANGED
package/api.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/oquery",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.14",
|
|
4
4
|
"description": "Datalog-inspired, optimized pattern/predicate query engine for JS objects & arrays of objects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -39,15 +39,15 @@
|
|
|
39
39
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@thi.ng/api": "^8.11.
|
|
43
|
-
"@thi.ng/checks": "^3.6.
|
|
44
|
-
"@thi.ng/compare": "^2.4.
|
|
45
|
-
"@thi.ng/defmulti": "^3.0.
|
|
46
|
-
"@thi.ng/equiv": "^2.1.
|
|
42
|
+
"@thi.ng/api": "^8.11.20",
|
|
43
|
+
"@thi.ng/checks": "^3.6.23",
|
|
44
|
+
"@thi.ng/compare": "^2.4.12",
|
|
45
|
+
"@thi.ng/defmulti": "^3.0.60",
|
|
46
|
+
"@thi.ng/equiv": "^2.1.76"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"esbuild": "^0.
|
|
50
|
-
"typedoc": "^0.27.
|
|
49
|
+
"esbuild": "^0.25.0",
|
|
50
|
+
"typedoc": "^0.27.7",
|
|
51
51
|
"typescript": "^5.7.3"
|
|
52
52
|
},
|
|
53
53
|
"keywords": [
|
|
@@ -98,5 +98,5 @@
|
|
|
98
98
|
],
|
|
99
99
|
"year": 2020
|
|
100
100
|
},
|
|
101
|
-
"gitHead": "
|
|
101
|
+
"gitHead": "9a0b33253fef092aaf301decf6ecd54317874d4c\n"
|
|
102
102
|
}
|
package/query.d.ts
CHANGED
|
@@ -5,10 +5,10 @@ import type { KeyQueryFn, KeyQueryOpts, MultiQueryOpts, QueryFn, QueryObj, Query
|
|
|
5
5
|
* given behavior options.
|
|
6
6
|
*
|
|
7
7
|
* @remarks
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
8
|
+
* - {@link QueryOpts}
|
|
9
|
+
* - {@link ObjQueryFn}
|
|
10
|
+
* - {@link ArrayQueryFn}
|
|
11
|
+
* - {@link defKeyQuery}
|
|
12
12
|
*
|
|
13
13
|
* @param opts -
|
|
14
14
|
*/
|
|
@@ -19,9 +19,9 @@ export declare const defQuery: <T extends QueryObj | QueryObj[] = QueryObj>(opts
|
|
|
19
19
|
* return sets of keys (or indices) of matching objects.
|
|
20
20
|
*
|
|
21
21
|
* @remarks
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
22
|
+
* - {@link KeyQueryOpts}
|
|
23
|
+
* - {@link ObjKeyQueryFn}
|
|
24
|
+
* - {@link ArrayKeyQueryFn}
|
|
25
25
|
*
|
|
26
26
|
* @param opts -
|
|
27
27
|
*/
|