@lucern/graph-sync 1.0.30 → 1.0.31

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
@@ -5,6 +5,11 @@ All notable changes to `@lucern/graph-sync` will be documented in this file.
5
5
  ## [Unreleased]
6
6
  - No unreleased changes yet.
7
7
 
8
+ ## [1.0.31] - 2026-06-23
9
+ - Coherent 1.0.31 bump with the control-plane Convex module-path fix so tenant
10
+ adopters install one package line across graph, SDK, MCP, kernel, and
11
+ control-plane surfaces.
12
+
8
13
  ## [1.0.30] - 2026-06-23
9
14
  - Coherent 1.0.30 bump with the post-CQ14 graph/sync package line so tenant
10
15
  adopters install a single version across graph, SDK, MCP, kernel, and
@@ -4,12 +4,12 @@ declare const DUAL_WRITE_EDGE_TYPES: readonly ["supports", "informs", "tests", "
4
4
  type DualWriteEdgeType = (typeof DUAL_WRITE_EDGE_TYPES)[number];
5
5
  declare function needsDualWrite(edgeType: string): boolean;
6
6
  declare const createEdge: convex_server.RegisteredAction<"internal", {
7
+ tenantId?: string | undefined;
8
+ topicId?: string | undefined;
7
9
  weight?: number | undefined;
8
10
  confidence?: number | undefined;
9
11
  context?: string | undefined;
10
12
  derivationType?: string | undefined;
11
- topicId?: string | undefined;
12
- tenantId?: string | undefined;
13
13
  workspaceId?: string | undefined;
14
14
  fromLayer?: string | undefined;
15
15
  toLayer?: string | undefined;
@@ -22,10 +22,10 @@ declare const createEdge: convex_server.RegisteredAction<"internal", {
22
22
  validUntil?: number | undefined;
23
23
  metadata?: any;
24
24
  globalId: string;
25
- edgeType: string;
26
- createdBy: string;
27
25
  fromGlobalId: string;
28
26
  toGlobalId: string;
27
+ edgeType: string;
28
+ createdBy: string;
29
29
  }, Promise<{
30
30
  success: boolean;
31
31
  globalId: string;
@@ -8,7 +8,7 @@ type SyncEntityType = "node" | "edge" | "embedding";
8
8
  type SyncOperation = "upsert" | "delete" | "sync";
9
9
  declare const syncNodeToNeo4j: convex_server.RegisteredAction<"internal", {
10
10
  nodeId: convex_values.GenericId<"epistemicNodes">;
11
- operation: "upsert" | "delete";
11
+ operation: "delete" | "upsert";
12
12
  }, Promise<Readonly<{
13
13
  error?: string;
14
14
  entityType: SyncEntityType;
@@ -18,7 +18,7 @@ declare const syncNodeToNeo4j: convex_server.RegisteredAction<"internal", {
18
18
  success: boolean;
19
19
  }>>>;
20
20
  declare const syncEdgeToNeo4j: convex_server.RegisteredAction<"internal", {
21
- operation: "upsert" | "delete";
21
+ operation: "delete" | "upsert";
22
22
  edgeId: convex_values.GenericId<"epistemicEdges">;
23
23
  }, Promise<Readonly<{
24
24
  error?: string;
@@ -41,5 +41,5 @@
41
41
  "convex-validators",
42
42
  "proof-attestation"
43
43
  ],
44
- "signedAt": 1782180332812
44
+ "signedAt": 1782203762361
45
45
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucern/graph-sync",
3
- "version": "1.0.30",
3
+ "version": "1.0.31",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -50,8 +50,8 @@
50
50
  "typecheck": "tsc --noEmit"
51
51
  },
52
52
  "dependencies": {
53
- "@lucern/contracts": "1.0.30",
54
- "@lucern/graph-primitives": "1.0.30",
53
+ "@lucern/contracts": "1.0.31",
54
+ "@lucern/graph-primitives": "1.0.31",
55
55
  "convex": "^1.39.1",
56
56
  "neo4j-driver": "^5.28.1"
57
57
  },