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