@lucern/sdk 1.0.9 → 1.0.11
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 +6 -0
- package/README.md +35 -0
- package/dist/beliefs/index.js +10 -1
- package/dist/beliefs/index.js.map +1 -1
- package/dist/client.d.ts +9 -0
- package/dist/client.js +10 -1
- package/dist/client.js.map +1 -1
- package/dist/clientPlatformNamespaces.d.ts +9 -0
- package/dist/clientPlatformNamespaces.js +9 -0
- package/dist/clientPlatformNamespaces.js.map +1 -1
- package/dist/contradictions/index.js +10 -1
- package/dist/contradictions/index.js.map +1 -1
- package/dist/decisions/index.js +10 -1
- package/dist/decisions/index.js.map +1 -1
- package/dist/edges/index.js +10 -1
- package/dist/edges/index.js.map +1 -1
- package/dist/evidence/index.js +10 -1
- package/dist/evidence/index.js.map +1 -1
- package/dist/index.js +10 -1
- package/dist/index.js.map +1 -1
- package/dist/lenses/index.js +10 -1
- package/dist/lenses/index.js.map +1 -1
- package/dist/nodes/index.js +10 -1
- package/dist/nodes/index.js.map +1 -1
- package/dist/ontologies/index.js +10 -1
- package/dist/ontologies/index.js.map +1 -1
- package/dist/proof-attestation.json +1 -1
- package/dist/questions/index.js +10 -1
- package/dist/questions/index.js.map +1 -1
- package/dist/topics/index.js +10 -1
- package/dist/topics/index.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/dist/worktrees/index.js +10 -1
- package/dist/worktrees/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -4562,6 +4562,15 @@ function createClientPlatformNamespaces(ctx) {
|
|
|
4562
4562
|
bootstrap: {
|
|
4563
4563
|
generateSessionHandoff: functionSurfaceClient.generateSessionHandoff
|
|
4564
4564
|
},
|
|
4565
|
+
hybrid: {
|
|
4566
|
+
discover: functionSurfaceClient.hybridDiscover,
|
|
4567
|
+
hybridDiscover: functionSurfaceClient.hybridDiscover,
|
|
4568
|
+
resolveTopicSemantic: functionSurfaceClient.resolveTopicSemantic,
|
|
4569
|
+
expandGraphNeighborhood: functionSurfaceClient.expandGraphNeighborhood,
|
|
4570
|
+
findRelatedNodes: functionSurfaceClient.findRelatedNodes,
|
|
4571
|
+
analyzeGraphImpact: functionSurfaceClient.analyzeGraphImpact,
|
|
4572
|
+
detectGraphDrift: functionSurfaceClient.detectGraphDrift
|
|
4573
|
+
},
|
|
4565
4574
|
embeddings: embeddingsClient,
|
|
4566
4575
|
graphAnalysis: graphAnalysisClient,
|
|
4567
4576
|
graphRecommendations: graphRecommendationsClient,
|
|
@@ -9993,7 +10002,7 @@ function createToolRegistryClient(config = {}) {
|
|
|
9993
10002
|
}
|
|
9994
10003
|
|
|
9995
10004
|
// src/version.ts
|
|
9996
|
-
var LUCERN_SDK_VERSION = "1.0.
|
|
10005
|
+
var LUCERN_SDK_VERSION = "1.0.11";
|
|
9997
10006
|
|
|
9998
10007
|
// src/workflowClient.ts
|
|
9999
10008
|
function normalizeLensQuery(value) {
|