@lucern/graph-sync 1.0.30 → 1.0.32
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 +10 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js.map +1 -1
- package/dist/neo4jEdgeAPI.js.map +1 -1
- package/dist/neo4jQueries.d.ts +1 -1
- package/dist/neo4jQueries.js.map +1 -1
- package/dist/neo4jSync.js.map +1 -1
- package/dist/{neo4jSyncHelpers-DWr-lF-A.d.ts → neo4jSyncHelpers-C7ihZZTn.d.ts} +2 -2
- package/dist/neo4jSyncHelpers.d.ts +1 -1
- package/dist/neo4jSyncHelpers.js.map +1 -1
- package/dist/proof-attestation.json +1 -1
- package/package.json +3 -3
- package/dist/{neo4jQueries-D14Putpd.d.ts → neo4jQueries-BoVNN2Dn.d.ts} +67 -67
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ 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.32] - 2026-06-25
|
|
9
|
+
- Coherent 1.0.32 bump with the UUIDv7 identity-spine release line. No
|
|
10
|
+
graph-sync package-local runtime contract change is introduced by this
|
|
11
|
+
release.
|
|
12
|
+
|
|
13
|
+
## [1.0.31] - 2026-06-23
|
|
14
|
+
- Coherent 1.0.31 bump with the control-plane Convex module-path fix so tenant
|
|
15
|
+
adopters install one package line across graph, SDK, MCP, kernel, and
|
|
16
|
+
control-plane surfaces.
|
|
17
|
+
|
|
8
18
|
## [1.0.30] - 2026-06-23
|
|
9
19
|
- Coherent 1.0.30 bump with the post-CQ14 graph/sync package line so tenant
|
|
10
20
|
adopters install a single version across graph, SDK, MCP, kernel, and
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as convex_server from 'convex/server';
|
|
2
|
-
export { n as neo4jQueries } from './neo4jQueries-
|
|
2
|
+
export { n as neo4jQueries } from './neo4jQueries-BoVNN2Dn.js';
|
|
3
3
|
import * as convex_values from 'convex/values';
|
|
4
|
-
export { n as neo4jSyncHelpers } from './neo4jSyncHelpers-
|
|
4
|
+
export { n as neo4jSyncHelpers } from './neo4jSyncHelpers-C7ihZZTn.js';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* neo4jDriver module implementation.
|
|
@@ -120,11 +120,11 @@ declare const DUAL_WRITE_EDGE_TYPES: readonly ["supports", "informs", "tests", "
|
|
|
120
120
|
type DualWriteEdgeType = (typeof DUAL_WRITE_EDGE_TYPES)[number];
|
|
121
121
|
declare function needsDualWrite(edgeType: string): boolean;
|
|
122
122
|
declare const createEdge: convex_server.RegisteredAction<"internal", {
|
|
123
|
+
topicId?: string | undefined;
|
|
123
124
|
weight?: number | undefined;
|
|
124
125
|
confidence?: number | undefined;
|
|
125
126
|
context?: string | undefined;
|
|
126
127
|
derivationType?: string | undefined;
|
|
127
|
-
topicId?: string | undefined;
|
|
128
128
|
tenantId?: string | undefined;
|
|
129
129
|
workspaceId?: string | undefined;
|
|
130
130
|
fromLayer?: string | undefined;
|