frogql 0.2.1 → 0.2.3

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.
Files changed (2) hide show
  1. package/index.d.ts +7 -4
  2. 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 present when returned via `RETURN e`
39
- * (top-level `Value::Edge`); omitted in path context to keep payloads
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
- props?: any
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.1",
3
+ "version": "0.2.3",
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.1",
69
- "frogql-darwin-arm64": "0.2.1",
70
- "frogql-linux-x64-gnu": "0.2.1",
71
- "frogql-linux-arm64-gnu": "0.2.1",
72
- "frogql-win32-x64-msvc": "0.2.1"
68
+ "frogql-darwin-x64": "0.2.3",
69
+ "frogql-darwin-arm64": "0.2.3",
70
+ "frogql-linux-x64-gnu": "0.2.3",
71
+ "frogql-linux-arm64-gnu": "0.2.3",
72
+ "frogql-win32-x64-msvc": "0.2.3"
73
73
  }
74
74
  }