@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 +1 -1
- package/package.json +14 -13
- package/pattern.d.ts +1 -1
- package/store.d.ts +3 -3
- package/store.js +3 -3
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rstream-query",
|
|
3
|
-
"version": "2.1.
|
|
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.
|
|
39
|
-
"@thi.ng/associative": "^6.3.
|
|
40
|
-
"@thi.ng/checks": "^3.5.
|
|
41
|
-
"@thi.ng/equiv": "^2.1.
|
|
42
|
-
"@thi.ng/errors": "^2.4.
|
|
43
|
-
"@thi.ng/logger": "^3.0.
|
|
44
|
-
"@thi.ng/math": "^5.10.
|
|
45
|
-
"@thi.ng/rstream": "^8.3.
|
|
46
|
-
"@thi.ng/rstream-dot": "^3.0.
|
|
47
|
-
"@thi.ng/transducers": "^8.9.
|
|
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": "
|
|
112
|
+
"gitHead": "a421058a65ba76608d94129ac29451bfedaf201c\n"
|
|
112
113
|
}
|
package/pattern.d.ts
CHANGED
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 -
|