@thi.ng/rstream-query 2.1.109 → 2.1.110
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 +6 -6
- 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.110",
|
|
4
4
|
"description": "@thi.ng/rstream based triple store & reactive query engine",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@thi.ng/api": "^8.9.27",
|
|
39
|
-
"@thi.ng/associative": "^6.3.
|
|
39
|
+
"@thi.ng/associative": "^6.3.45",
|
|
40
40
|
"@thi.ng/checks": "^3.5.1",
|
|
41
41
|
"@thi.ng/equiv": "^2.1.50",
|
|
42
42
|
"@thi.ng/errors": "^2.4.19",
|
|
43
43
|
"@thi.ng/logger": "^3.0.4",
|
|
44
44
|
"@thi.ng/math": "^5.10.4",
|
|
45
|
-
"@thi.ng/rstream": "^8.3.
|
|
46
|
-
"@thi.ng/rstream-dot": "^3.0.
|
|
47
|
-
"@thi.ng/transducers": "^8.9.
|
|
45
|
+
"@thi.ng/rstream": "^8.3.10",
|
|
46
|
+
"@thi.ng/rstream-dot": "^3.0.60",
|
|
47
|
+
"@thi.ng/transducers": "^8.9.9"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@microsoft/api-extractor": "^7.40.1",
|
|
@@ -108,5 +108,5 @@
|
|
|
108
108
|
"parent": "@thi.ng/rstream",
|
|
109
109
|
"year": 2018
|
|
110
110
|
},
|
|
111
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "df9e312af741d87e6b450afcfea6a6e381662b1e\n"
|
|
112
112
|
}
|
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 -
|