@lucern/graph-sync 1.0.29 → 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.
@@ -1,58 +0,0 @@
1
- /**
2
- * Neo4j Sync Helpers - Queries and Mutations
3
- *
4
- * These are Convex queries and mutations that support the Neo4j sync process.
5
- * Separated from neo4jSync.ts because that file uses "use node" directive
6
- * which only supports actions.
7
- */
8
- declare const logSyncEvent: any;
9
- declare const getNodeForSync: any;
10
- /**
11
- * Get the embedding vector for a node, if it exists.
12
- * Used by neo4jSync to include embeddings in node upserts.
13
- */
14
- declare const getEmbeddingForSync: any;
15
- /**
16
- * Get all nodes for re-sync with optional type filter (paginated)
17
- */
18
- declare const getAllNodesForResync: any;
19
- declare const getEdgeForSync: any;
20
- /**
21
- * Get all edges for re-sync (paginated)
22
- */
23
- declare const getAllEdgesForResync: any;
24
- declare const getNodeBatchForSync: any;
25
- declare const getEdgeBatchForSync: any;
26
- /**
27
- * Resolve retry queue entityId for edge operations.
28
- *
29
- * Queue entries can contain either:
30
- * - Convex edge document IDs (legacy sync retries)
31
- * - Edge globalIds (projection retries from Neo4j-first writes)
32
- */
33
- declare const resolveEdgeRetryTarget: any;
34
- declare const queueForRetry: any;
35
- declare const getPendingRetries: any;
36
- declare const updateQueueStatus: any;
37
- declare const incrementAttempts: any;
38
- declare const checkSyncHealth: any;
39
-
40
- declare const neo4jSyncHelpers_checkSyncHealth: typeof checkSyncHealth;
41
- declare const neo4jSyncHelpers_getAllEdgesForResync: typeof getAllEdgesForResync;
42
- declare const neo4jSyncHelpers_getAllNodesForResync: typeof getAllNodesForResync;
43
- declare const neo4jSyncHelpers_getEdgeBatchForSync: typeof getEdgeBatchForSync;
44
- declare const neo4jSyncHelpers_getEdgeForSync: typeof getEdgeForSync;
45
- declare const neo4jSyncHelpers_getEmbeddingForSync: typeof getEmbeddingForSync;
46
- declare const neo4jSyncHelpers_getNodeBatchForSync: typeof getNodeBatchForSync;
47
- declare const neo4jSyncHelpers_getNodeForSync: typeof getNodeForSync;
48
- declare const neo4jSyncHelpers_getPendingRetries: typeof getPendingRetries;
49
- declare const neo4jSyncHelpers_incrementAttempts: typeof incrementAttempts;
50
- declare const neo4jSyncHelpers_logSyncEvent: typeof logSyncEvent;
51
- declare const neo4jSyncHelpers_queueForRetry: typeof queueForRetry;
52
- declare const neo4jSyncHelpers_resolveEdgeRetryTarget: typeof resolveEdgeRetryTarget;
53
- declare const neo4jSyncHelpers_updateQueueStatus: typeof updateQueueStatus;
54
- declare namespace neo4jSyncHelpers {
55
- export { neo4jSyncHelpers_checkSyncHealth as checkSyncHealth, neo4jSyncHelpers_getAllEdgesForResync as getAllEdgesForResync, neo4jSyncHelpers_getAllNodesForResync as getAllNodesForResync, neo4jSyncHelpers_getEdgeBatchForSync as getEdgeBatchForSync, neo4jSyncHelpers_getEdgeForSync as getEdgeForSync, neo4jSyncHelpers_getEmbeddingForSync as getEmbeddingForSync, neo4jSyncHelpers_getNodeBatchForSync as getNodeBatchForSync, neo4jSyncHelpers_getNodeForSync as getNodeForSync, neo4jSyncHelpers_getPendingRetries as getPendingRetries, neo4jSyncHelpers_incrementAttempts as incrementAttempts, neo4jSyncHelpers_logSyncEvent as logSyncEvent, neo4jSyncHelpers_queueForRetry as queueForRetry, neo4jSyncHelpers_resolveEdgeRetryTarget as resolveEdgeRetryTarget, neo4jSyncHelpers_updateQueueStatus as updateQueueStatus };
56
- }
57
-
58
- export { getAllNodesForResync as a, getEdgeBatchForSync as b, checkSyncHealth as c, getEdgeForSync as d, getEmbeddingForSync as e, getNodeBatchForSync as f, getAllEdgesForResync as g, getNodeForSync as h, getPendingRetries as i, incrementAttempts as j, logSyncEvent as l, neo4jSyncHelpers as n, queueForRetry as q, resolveEdgeRetryTarget as r, updateQueueStatus as u };