@thi.ng/rstream-query 2.1.109 → 2.1.111

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**: 2024-03-01T15:22:50Z
3
+ - **Last updated**: 2024-03-07T20:40:47Z
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.109",
3
+ "version": "2.1.111",
4
4
  "description": "@thi.ng/rstream based triple store & reactive query engine",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -32,19 +32,20 @@
32
32
  "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
33
33
  "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
34
34
  "pub": "yarn npm publish --access public",
35
- "test": "bun test"
35
+ "test": "bun test",
36
+ "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
36
37
  },
37
38
  "dependencies": {
38
- "@thi.ng/api": "^8.9.27",
39
- "@thi.ng/associative": "^6.3.44",
40
- "@thi.ng/checks": "^3.5.1",
41
- "@thi.ng/equiv": "^2.1.50",
42
- "@thi.ng/errors": "^2.4.19",
43
- "@thi.ng/logger": "^3.0.4",
44
- "@thi.ng/math": "^5.10.4",
45
- "@thi.ng/rstream": "^8.3.9",
46
- "@thi.ng/rstream-dot": "^3.0.59",
47
- "@thi.ng/transducers": "^8.9.8"
39
+ "@thi.ng/api": "^8.9.28",
40
+ "@thi.ng/associative": "^6.3.46",
41
+ "@thi.ng/checks": "^3.5.2",
42
+ "@thi.ng/equiv": "^2.1.51",
43
+ "@thi.ng/errors": "^2.4.20",
44
+ "@thi.ng/logger": "^3.0.5",
45
+ "@thi.ng/math": "^5.10.5",
46
+ "@thi.ng/rstream": "^8.3.11",
47
+ "@thi.ng/rstream-dot": "^3.0.61",
48
+ "@thi.ng/transducers": "^8.9.10"
48
49
  },
49
50
  "devDependencies": {
50
51
  "@microsoft/api-extractor": "^7.40.1",
@@ -108,5 +109,5 @@
108
109
  "parent": "@thi.ng/rstream",
109
110
  "year": 2018
110
111
  },
111
- "gitHead": "d660ae8fd1bf64d919b4334f19509f1f539d70f6\n"
112
+ "gitHead": "a421058a65ba76608d94129ac29451bfedaf201c\n"
112
113
  }
package/pattern.d.ts CHANGED
@@ -10,7 +10,7 @@ export declare const patternVars: ([s, p, o]: Pattern) => string[];
10
10
  *
11
11
  * Example:
12
12
  *
13
- * ```
13
+ * ```text
14
14
  * ["?s", [p1, p2, p3], "?o"] =>
15
15
  * [
16
16
  * [["?s", p1, "?__q0"], ["?__q0", p2, "?__q1"], ["?__q1", p3, "?o"] ],
package/store.d.ts CHANGED
@@ -55,7 +55,7 @@ export declare class TripleStore implements Iterable<Triple>, IToDot {
55
55
  * 1 query variable. Query vars are strings with `?` prefix. The
56
56
  * rest of the string is considered the variable name.
57
57
  *
58
- * ```
58
+ * ```js
59
59
  * g.addParamQuery(["?a", "friend", "?b"]);
60
60
  * ```
61
61
  *
@@ -64,8 +64,8 @@ export declare class TripleStore implements Iterable<Triple>, IToDot {
64
64
  * stated query variable solutions. Returns a rstream subscription
65
65
  * emitting arrays of solution objects like:
66
66
  *
67
- * ```
68
- * [{a: "asterix", b: "obelix"}, {a: "romeo", b: "julia"}]
67
+ * ```js
68
+ * [{ a: "asterix", b: "obelix" }, { a: "romeo", b: "julia" }]
69
69
  * ```
70
70
  *
71
71
  * @param id -
package/store.js CHANGED
@@ -183,7 +183,7 @@ class TripleStore {
183
183
  * 1 query variable. Query vars are strings with `?` prefix. The
184
184
  * rest of the string is considered the variable name.
185
185
  *
186
- * ```
186
+ * ```js
187
187
  * g.addParamQuery(["?a", "friend", "?b"]);
188
188
  * ```
189
189
  *
@@ -192,8 +192,8 @@ class TripleStore {
192
192
  * stated query variable solutions. Returns a rstream subscription
193
193
  * emitting arrays of solution objects like:
194
194
  *
195
- * ```
196
- * [{a: "asterix", b: "obelix"}, {a: "romeo", b: "julia"}]
195
+ * ```js
196
+ * [{ a: "asterix", b: "obelix" }, { a: "romeo", b: "julia" }]
197
197
  * ```
198
198
  *
199
199
  * @param id -