@thi.ng/rstream-query 2.1.163 → 2.1.165

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-13T16:03:11Z
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/rstream-query",
3
- "version": "2.1.163",
3
+ "version": "2.1.165",
4
4
  "description": "@thi.ng/rstream based triple store & reactive query engine",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,20 +39,20 @@
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/associative": "^7.0.23",
44
- "@thi.ng/checks": "^3.6.22",
45
- "@thi.ng/equiv": "^2.1.75",
46
- "@thi.ng/errors": "^2.5.25",
47
- "@thi.ng/logger": "^3.0.30",
48
- "@thi.ng/math": "^5.11.19",
49
- "@thi.ng/rstream": "^9.2.8",
50
- "@thi.ng/rstream-dot": "^3.0.113",
51
- "@thi.ng/transducers": "^9.2.17"
42
+ "@thi.ng/api": "^8.11.20",
43
+ "@thi.ng/associative": "^7.0.24",
44
+ "@thi.ng/checks": "^3.6.23",
45
+ "@thi.ng/equiv": "^2.1.76",
46
+ "@thi.ng/errors": "^2.5.26",
47
+ "@thi.ng/logger": "^3.1.1",
48
+ "@thi.ng/math": "^5.11.20",
49
+ "@thi.ng/rstream": "^9.2.10",
50
+ "@thi.ng/rstream-dot": "^3.0.115",
51
+ "@thi.ng/transducers": "^9.2.18"
52
52
  },
53
53
  "devDependencies": {
54
- "esbuild": "^0.24.2",
55
- "typedoc": "^0.27.6",
54
+ "esbuild": "^0.25.0",
55
+ "typedoc": "^0.27.7",
56
56
  "typescript": "^5.7.3"
57
57
  },
58
58
  "keywords": [
@@ -111,5 +111,5 @@
111
111
  "parent": "@thi.ng/rstream",
112
112
  "year": 2018
113
113
  },
114
- "gitHead": "fc1d498e8d4b690db873c30cc594352a804e7a65\n"
114
+ "gitHead": "9a0b33253fef092aaf301decf6ecd54317874d4c\n"
115
115
  }
package/pattern.d.ts CHANGED
@@ -2,11 +2,10 @@ import type { PathPattern, Pattern } from "./api.js";
2
2
  export declare const patternVarCount: (p: Pattern) => number;
3
3
  export declare const patternVars: ([s, p, o]: Pattern) => string[];
4
4
  /**
5
- * Takes a path triple pattern and max depth. The pattern's predicate
6
- * must be a seq of preds. Returns a 2-elem vector [patterns vars],
7
- * where `patterns` is a list of generated sub-query patterns with
8
- * injected temp qvars for in between patterns and `vars` are the temp
9
- * qvars themselves.
5
+ * Takes a path triple pattern and max depth. The pattern's predicate must be a
6
+ * seq of preds. Returns a 2-elem vector `[patterns,vars]`, where `patterns` is
7
+ * a list of generated sub-query patterns with injected temp qvars for in
8
+ * between patterns and `vars` are the temp qvars themselves.
10
9
  *
11
10
  * Example:
12
11
  *