@thi.ng/oquery 2.3.13 → 2.3.15

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-01-29T16:25:48Z
3
+ - **Last updated**: 2025-02-19T20:59:58Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 201 standalone projects, maintained as part
10
+ > This is one of 202 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
12
12
  > and anti-framework.
13
13
  >
package/api.d.ts CHANGED
@@ -8,6 +8,7 @@ export type QueryObj = Record<string, any>;
8
8
  * All 27 possible query types.
9
9
  *
10
10
  * @remarks
11
+ *
11
12
  * - l => literal
12
13
  * - n => null / wildcard
13
14
  * - f => function / predicate
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/oquery",
3
- "version": "2.3.13",
3
+ "version": "2.3.15",
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.19",
43
- "@thi.ng/checks": "^3.6.22",
44
- "@thi.ng/compare": "^2.4.11",
45
- "@thi.ng/defmulti": "^3.0.59",
46
- "@thi.ng/equiv": "^2.1.75"
42
+ "@thi.ng/api": "^8.11.21",
43
+ "@thi.ng/checks": "^3.6.24",
44
+ "@thi.ng/compare": "^2.4.13",
45
+ "@thi.ng/defmulti": "^3.0.61",
46
+ "@thi.ng/equiv": "^2.1.77"
47
47
  },
48
48
  "devDependencies": {
49
- "esbuild": "^0.24.2",
50
- "typedoc": "^0.27.6",
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": "dcc1dbfa6eae31ac65e12843987b94d4a7edc144\n"
101
+ "gitHead": "bee617702ac61d093465b967f8f973dc566faa6b\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
- * @see {@link QueryOpts}
9
- * @see {@link ObjQueryFn}
10
- * @see {@link ArrayQueryFn}
11
- * @see {@link defKeyQuery}
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
- * @see {@link KeyQueryOpts}
23
- * @see {@link ObjKeyQueryFn}
24
- * @see {@link ArrayKeyQueryFn}
22
+ * - {@link KeyQueryOpts}
23
+ * - {@link ObjKeyQueryFn}
24
+ * - {@link ArrayKeyQueryFn}
25
25
  *
26
26
  * @param opts -
27
27
  */