@thi.ng/oquery 2.1.6 → 2.1.9

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/package.json +10 -10
  3. package/query.d.ts +2 -2
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2022-05-07T11:33:36Z
3
+ - **Last updated**: 2022-07-19T15:36:12Z
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/oquery",
3
- "version": "2.1.6",
3
+ "version": "2.1.9",
4
4
  "description": "Datalog-inspired, optimized pattern/predicate query engine for JS objects & arrays",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,18 +34,18 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.3.6",
38
- "@thi.ng/checks": "^3.1.6",
39
- "@thi.ng/defmulti": "^2.1.6",
40
- "@thi.ng/equiv": "^2.1.6"
37
+ "@thi.ng/api": "^8.3.8",
38
+ "@thi.ng/checks": "^3.2.2",
39
+ "@thi.ng/defmulti": "^2.1.8",
40
+ "@thi.ng/equiv": "^2.1.8"
41
41
  },
42
42
  "devDependencies": {
43
- "@microsoft/api-extractor": "^7.23.1",
44
- "@thi.ng/testament": "^0.2.6",
43
+ "@microsoft/api-extractor": "^7.25.0",
44
+ "@thi.ng/testament": "^0.2.9",
45
45
  "rimraf": "^3.0.2",
46
46
  "tools": "^0.0.1",
47
- "typedoc": "^0.22.15",
48
- "typescript": "^4.6.4"
47
+ "typedoc": "^0.22.17",
48
+ "typescript": "^4.7.4"
49
49
  },
50
50
  "keywords": [
51
51
  "array",
@@ -91,5 +91,5 @@
91
91
  ],
92
92
  "year": 2020
93
93
  },
94
- "gitHead": "cf084be5fd5932226054d2dd32bad35481379f5d\n"
94
+ "gitHead": "108a6357b77d457912d30681d7cc5603ae995209\n"
95
95
  }
package/query.d.ts CHANGED
@@ -11,7 +11,7 @@ import type { KeyQueryFn, KeyQueryOpts, QueryFn, QueryObj, QueryOpts } from "./a
11
11
  *
12
12
  * @param opts -
13
13
  */
14
- export declare const defQuery: <T extends QueryObj | QueryObj[] = QueryObj>(opts?: Partial<QueryOpts> | undefined) => QueryFn<T>;
14
+ export declare const defQuery: <T extends QueryObj | QueryObj[] = QueryObj>(opts?: Partial<QueryOpts>) => QueryFn<T>;
15
15
  /**
16
16
  * Generic Higher-order function to return an actual query function based on
17
17
  * given behavior options. Unlike {@link defQuery}, key query functions only
@@ -24,5 +24,5 @@ export declare const defQuery: <T extends QueryObj | QueryObj[] = QueryObj>(opts
24
24
  *
25
25
  * @param opts -
26
26
  */
27
- export declare const defKeyQuery: <T extends QueryObj | QueryObj[] = QueryObj>(opts?: Partial<KeyQueryOpts> | undefined) => KeyQueryFn<T>;
27
+ export declare const defKeyQuery: <T extends QueryObj | QueryObj[] = QueryObj>(opts?: Partial<KeyQueryOpts>) => KeyQueryFn<T>;
28
28
  //# sourceMappingURL=query.d.ts.map