frogql 0.2.1 → 0.2.2
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/index.d.ts +7 -4
- package/package.json +6 -6
package/index.d.ts
CHANGED
|
@@ -35,15 +35,18 @@ export interface NodeRef {
|
|
|
35
35
|
}
|
|
36
36
|
/**
|
|
37
37
|
* Shape of an edge reference inside an `execute()` row. `kind` is
|
|
38
|
-
* always `"edge"`. `props` is
|
|
39
|
-
*
|
|
40
|
-
* small.
|
|
38
|
+
* always `"edge"`. Symmetric with `NodeRef`: `props` is always
|
|
39
|
+
* populated, whether the edge arrives via `_paths` or via `RETURN e`.
|
|
41
40
|
*/
|
|
42
41
|
export interface EdgeRef {
|
|
43
42
|
kind: string
|
|
44
43
|
id: number
|
|
45
44
|
labels: Array<string>
|
|
46
|
-
|
|
45
|
+
/**
|
|
46
|
+
* Free-form property bag. Values are JSON-compatible (number /
|
|
47
|
+
* string / boolean / null / nested object / array).
|
|
48
|
+
*/
|
|
49
|
+
props: any
|
|
47
50
|
}
|
|
48
51
|
/**
|
|
49
52
|
* Counters returned from a successful DML statement (INSERT / SET /
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "frogql",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "froGQL — embedded GQL graph database with ISO GQL path patterns (Rust core, Node.js bindings via napi-rs)",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"provenance": true
|
|
66
66
|
},
|
|
67
67
|
"optionalDependencies": {
|
|
68
|
-
"frogql-darwin-x64": "0.2.
|
|
69
|
-
"frogql-darwin-arm64": "0.2.
|
|
70
|
-
"frogql-linux-x64-gnu": "0.2.
|
|
71
|
-
"frogql-linux-arm64-gnu": "0.2.
|
|
72
|
-
"frogql-win32-x64-msvc": "0.2.
|
|
68
|
+
"frogql-darwin-x64": "0.2.2",
|
|
69
|
+
"frogql-darwin-arm64": "0.2.2",
|
|
70
|
+
"frogql-linux-x64-gnu": "0.2.2",
|
|
71
|
+
"frogql-linux-arm64-gnu": "0.2.2",
|
|
72
|
+
"frogql-win32-x64-msvc": "0.2.2"
|
|
73
73
|
}
|
|
74
74
|
}
|