@thi.ng/rstream-query 2.1.108 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-02-25T14:07:53Z
3
+ - **Last updated**: 2024-03-02T14:05:52Z
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/README.md CHANGED
@@ -1,16 +1,5 @@
1
1
  <!-- This file is generated - DO NOT EDIT! -->
2
2
  <!-- Please see: https://github.com/thi-ng/umbrella/blob/develop/CONTRIBUTING.md#changes-to-readme-files -->
3
- > [!IMPORTANT]
4
- > ‼️ Announcing the thi.ng user survey 2024 📋
5
- >
6
- > [Please participate in the survey here!](https://forms.gle/XacbSDEmQMPZg8197)\
7
- > (open until end of February)
8
- >
9
- > **To achieve a better sample size, I'd highly appreciate if you could
10
- > circulate the link to this survey in your own networks.**
11
- >
12
- > [Discussion](https://github.com/thi-ng/umbrella/discussions/447)
13
-
14
3
  # ![@thi.ng/rstream-query](https://media.thi.ng/umbrella/banners-20230807/thing-rstream-query.svg?2cfe42ce)
15
4
 
16
5
  [![npm version](https://img.shields.io/npm/v/@thi.ng/rstream-query.svg)](https://www.npmjs.com/package/@thi.ng/rstream-query)
@@ -22,7 +11,7 @@
22
11
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
23
12
  > and anti-framework.
24
13
  >
25
- > 🚀 Help me to work full-time on these projects by [sponsoring me on
14
+ > 🚀 Please help me to work full-time on these projects by [sponsoring me on
26
15
  > GitHub](https://github.com/sponsors/postspectacular). Thank you! ❤️
27
16
 
28
17
  - [About](#about)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rstream-query",
3
- "version": "2.1.108",
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",
@@ -35,16 +35,16 @@
35
35
  "test": "bun test"
36
36
  },
37
37
  "dependencies": {
38
- "@thi.ng/api": "^8.9.26",
39
- "@thi.ng/associative": "^6.3.43",
40
- "@thi.ng/checks": "^3.5.0",
41
- "@thi.ng/equiv": "^2.1.49",
42
- "@thi.ng/errors": "^2.4.18",
43
- "@thi.ng/logger": "^3.0.3",
44
- "@thi.ng/math": "^5.10.3",
45
- "@thi.ng/rstream": "^8.3.8",
46
- "@thi.ng/rstream-dot": "^3.0.58",
47
- "@thi.ng/transducers": "^8.9.7"
38
+ "@thi.ng/api": "^8.9.27",
39
+ "@thi.ng/associative": "^6.3.45",
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.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": "190d68e7f7524631b333cfdbf32c6a23be27c166\n"
111
+ "gitHead": "df9e312af741d87e6b450afcfea6a6e381662b1e\n"
112
112
  }
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 -