@lucern/sdk 1.0.10 → 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 +3 -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/lenses/index.js
CHANGED
|
@@ -4276,6 +4276,15 @@ function createClientPlatformNamespaces(ctx) {
|
|
|
4276
4276
|
bootstrap: {
|
|
4277
4277
|
generateSessionHandoff: functionSurfaceClient.generateSessionHandoff
|
|
4278
4278
|
},
|
|
4279
|
+
hybrid: {
|
|
4280
|
+
discover: functionSurfaceClient.hybridDiscover,
|
|
4281
|
+
hybridDiscover: functionSurfaceClient.hybridDiscover,
|
|
4282
|
+
resolveTopicSemantic: functionSurfaceClient.resolveTopicSemantic,
|
|
4283
|
+
expandGraphNeighborhood: functionSurfaceClient.expandGraphNeighborhood,
|
|
4284
|
+
findRelatedNodes: functionSurfaceClient.findRelatedNodes,
|
|
4285
|
+
analyzeGraphImpact: functionSurfaceClient.analyzeGraphImpact,
|
|
4286
|
+
detectGraphDrift: functionSurfaceClient.detectGraphDrift
|
|
4287
|
+
},
|
|
4279
4288
|
embeddings: embeddingsClient,
|
|
4280
4289
|
graphAnalysis: graphAnalysisClient,
|
|
4281
4290
|
graphRecommendations: graphRecommendationsClient,
|
|
@@ -9567,7 +9576,7 @@ function createToolRegistryClient(config = {}) {
|
|
|
9567
9576
|
}
|
|
9568
9577
|
|
|
9569
9578
|
// src/version.ts
|
|
9570
|
-
var LUCERN_SDK_VERSION = "1.0.
|
|
9579
|
+
var LUCERN_SDK_VERSION = "1.0.11";
|
|
9571
9580
|
|
|
9572
9581
|
// src/workflowClient.ts
|
|
9573
9582
|
function normalizeLensQuery(value) {
|