@lucern/graph-sync 1.0.56 → 1.0.57
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 +1 -1
- package/dist/neo4jEdgeAPI.d.ts +4 -4
- package/dist/neo4jSync.d.ts +2 -2
- package/package.json +3 -3
- package/dist/proof-attestation.json +0 -45
package/CHANGELOG.md
CHANGED
package/dist/neo4jEdgeAPI.d.ts
CHANGED
|
@@ -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;
|
package/dist/neo4jSync.d.ts
CHANGED
|
@@ -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: "
|
|
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: "
|
|
21
|
+
operation: "delete" | "upsert";
|
|
22
22
|
edgeId: convex_values.GenericId<"epistemicEdges">;
|
|
23
23
|
}, Promise<Readonly<{
|
|
24
24
|
error?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucern/graph-sync",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.57",
|
|
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": "
|
|
54
|
-
"@lucern/graph-primitives": "
|
|
53
|
+
"@lucern/contracts": "workspace:*",
|
|
54
|
+
"@lucern/graph-primitives": "workspace:*",
|
|
55
55
|
"convex": "^1.39.1",
|
|
56
56
|
"neo4j-driver": "^5.28.1"
|
|
57
57
|
},
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"proofIrVersion": "proof-ir/v1",
|
|
3
|
-
"manifestVersions": {
|
|
4
|
-
"@lucern/confidence": "0.3.0-alpha.0",
|
|
5
|
-
"@lucern/contracts": "0.3.0-alpha.0",
|
|
6
|
-
"edge-policy-manifest": "1.0.0"
|
|
7
|
-
},
|
|
8
|
-
"invariantsCovered": [
|
|
9
|
-
"INV-1: beliefs append-only",
|
|
10
|
-
"INV-14: no silent state transitions",
|
|
11
|
-
"MANIFEST-1: kernel projections declare epistemicAudit"
|
|
12
|
-
],
|
|
13
|
-
"invariantResults": [
|
|
14
|
-
{
|
|
15
|
-
"invariant": "INV-1: beliefs append-only",
|
|
16
|
-
"status": "passed",
|
|
17
|
-
"severity": "block_publish",
|
|
18
|
-
"evidenceRefs": []
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"invariant": "INV-14: no silent state transitions",
|
|
22
|
-
"status": "passed",
|
|
23
|
-
"severity": "block_publish",
|
|
24
|
-
"evidenceRefs": []
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"invariant": "MANIFEST-1: kernel projections declare epistemicAudit",
|
|
28
|
-
"status": "passed",
|
|
29
|
-
"severity": "block_publish",
|
|
30
|
-
"evidenceRefs": []
|
|
31
|
-
}
|
|
32
|
-
],
|
|
33
|
-
"contractsCovered": [
|
|
34
|
-
"append_sl_scoring",
|
|
35
|
-
"create_evidence",
|
|
36
|
-
"list_beliefs",
|
|
37
|
-
"list_tasks"
|
|
38
|
-
],
|
|
39
|
-
"emittersUsed": [
|
|
40
|
-
"typescript-types",
|
|
41
|
-
"convex-validators",
|
|
42
|
-
"proof-attestation"
|
|
43
|
-
],
|
|
44
|
-
"signedAt": 1782994689967
|
|
45
|
-
}
|